表中的AngularJS分页

时间:2019-05-23 07:58:23

标签: angularjs

我在向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 ">

上面的一切工作正常,但是我在增加分页方面很麻烦,在这种情况下有人可以帮助我吗?

0 个答案:

没有答案