【发布时间】:2016-01-24 03:00:30
【问题描述】:
在 ng-repeat 中订购商品后遇到一些问题。单击索引错误的项目打开页面后。 我的示例 HTML 代码,打开页面正确:
<div ng-repeat="item in items" ng-click="showPost($index)">{{item.title}}</div>
如果添加orderby,显示错误的帖子索引:
<div ng-repeat="item in items | orderBy:'-title'" ng-click="showPost($index)">{{item.title}}</div>
还有我的 $scope 函数 showPost():
$scope.showPost = function(index){
$rootScope.postContent = $scope.catItems[index];
$scope.ons.navigator.pushPage('post.html');
};
【问题讨论】:
标签: angularjs-ng-repeat angularjs-orderby