我使用模板文件创建了一个寻呼机小部件,我在HTML页面中使用了两次。我有一个选择转到页面选项,还有上一页和下一页的链接。
问题是当我使用选择框更新当前页面时更新,然后我使用上一页和下一页链接,当前页面会更新,但选择框不会更新。
请告诉我我做错了什么。我的构建这样的寻呼机小部件的方法是否存在任何逻辑错误?
控制器代码:
var gallery = angular.module('gallery', []);
gallery.controller('ItemListCtrl', ['$scope', function($scope){
/* Pagination Code */
$scope.currentPage = 1;
$scope.itemsPerPage = 24;
$scope.total = 100;
$scope.range = function(min, max, step){
step = step || 1;
var input = [];
for (var i = min; i <= max; i += step) input.push(i);
return input;
};
$scope.prevPage = function (){
if($scope.currentPage > 1){
$scope.currentPage--;
}
};
$scope.nextPage = function (){
if($scope.currentPage < $scope.pageCount()){
$scope.currentPage++;
}
};
$scope.pageCount = function (){
return Math.ceil($scope.total / $scope.itemsPerPage);
};
$scope.setPage = function (n){
if(n >= 0 && n <= $scope.pageCount()){
$scope.currentPage = parseInt(n, 10);
}
};
}]);
以下是用于复制问题的plnkr网址。
答案 0 :(得分:12)
根本原因是ng-include
将为目标元素创建一个单独的范围,因此快速修复代码就是在所有范围对象中添加$parent
前缀。
<fieldset class="pager">
<div>Page {{$parent.currentPage}} of {{$parent.pageCount()}}</div>
<div>
<div>
<label>Go to page</label>
<select ng-model='$parent.currentPage' ng-change="$parent.setPage($parent.currentPage)">
<option ng-repeat="n in range(1,$parent.pageCount())" value="{{n}}" ng-selected="n === $parent.currentPage">{{n}}</option>
</select>
</div>
<div>
<a href ng-click="$parent.prevPage()">Previous Page</a>
|
<a href ng-click="$parent.nextPage()">Next Page</a>
</div>
</div>
</fieldset>
Per Angular document Understanding Scopes,当您尝试对基元进行双向数据绑定(即表单元素,ng-model)时,范围继承将无法正常工作。通过遵循始终具有'.' in your ng-models
的“最佳实践”,可以轻松避免使用原语的这个问题