下面的代碼是分頁在HTML分頁:我一直在努力實現AngularJs
<button ng-disabled="" ng-click="previousPage(limit,offset)">
Previous
</button>
<button ng-disabled="" ng-click="nextPage(limit,offset)">
Next
</button>
在控制文件:
$scope.previousPage=function(limit,offset){
adminservice.getPagination().then(function(response){
adminservice.showAllVehicleDetails().then(function(){
$scope.vehicledetails=response.data[0][limit-10][offset+10];
console.log('limitNumber',limit)
console.log('offsetNumber',offset)
});
});
}
$scope.nextPage=function(limit,offset){
adminservice.getPagination().then(function(response){
adminservice.showAllVehicleDetails().then(function(){
$scope.vehicledetails=response.data[0][limit+10][offset-10];
});
});
}
在服務文件:
var getPagination=function(){
return $http({
url:apiurl+'paginatedetails',
method:"GET",
params:{limitNumber:limit,offsetNumber:offset}
});
}
任何人都可以告訴我正確的方法嗎?當我運行此代碼時,控制檯顯示如下錯誤:limit is not defined at Object.getPagination
。
感謝@Dixit 新秀錯誤:) –