我在向angularJS表添加分页时遇到麻烦。
这是我的控制器的GET方法。
$scope.getAllContact = function() {
var data = $http.get("http://127.0.0.1:8000/api/v1/contact")
.then(function(response) {
$scope.contacts = response.data;
}, function(response) {
});
};
$scope.getAllContact();
这是html表:
<tr ng-repeat="contact in contacts | filterByName track by $index ">
上面的一切工作正常,但是我在增加分页方面很麻烦,在这种情况下有人可以帮助我吗?