我正在尝试将参数传递给angular.js ui-router中的状态,如下所示:
@H_301_1@.state('details',{
url: '/details/:index',templateUrl: 'views/details.html'
})
原文链接:https://www.f2er.com/angularjs/142931.html该索引正在通过一个ng重复索引
@H_301_1@<div ng-repeat="program in programs"> <h2>{{program.name}}</h2> <p>{{program.description || "No Description"}}</p> <p><a ui-sref="details({index: $index})">View details »</a></p> </div>我的问题是在details.html中如何读取在状态的URL中传递的索引?