如何在表中动态重绘数据。 Angular ngTable

时间:2015-01-27 22:36:24

标签: angularjs ngtable

我的控制器只有1个函数getList()。当我第一次打电话时 - 一切都很好,我的桌子显示正确的数据。但是当我再次调用此函数时(为了获得不同的数据而使用新的params),我仍然在第一次调用时有表中的数据。如何重新加载/重绘/刷新数据?

    module.controller("IPsCtrl", function($scope, $filter, IPService, ngTableParams) {

    $scope.data_out = {
        'ip_pattern' : '%',
    };

    $scope.getList = function() {
        $scope.data=IPService.getList($scope.data_out,
            function(response) {

                $scope.tableParams = new ngTableParams({
                        page: 1,            // show first page
                        count: 10,          // count per page
                        filter: {
                             id: ''       // initial filter
                        },
                        sorting: {
                             id: 'asc'     // initial sorting
                        }
                    }, {
                      total: response.list.length, // length of data
                      getData: function($defer, params) {
                            // use build-in angular filter
                            var filteredData = params.filter() ?
                                      $filter('filter')(response.list, params.filter()) :
                                      response.list;
                            var orderedData = params.sorting() ?
                                      $filter('orderBy')(filteredData, params.orderBy()) :
                                      response.list;

                            params.total(orderedData.length); // set total for recalc pagination
                            $defer.resolve(orderedData.slice((params.page() - 1) * params.count(), params.page() * params.count()));
                    }
                });


            });
    };
});

这是html视图

<table ng-table="tableParams" show-filter="true" class="table">
                <tr ng-repeat="user in $data">
                     <td data-title="'Name'" sortable="'id'" filter="{ 'id': 'text' }">
                          {{user.id}}
                     </td>
                     <td data-title="'Age'" sortable="'value'" filter="{ 'value': 'text' }">
                          {{user.value}}
                     </td>
                </tr>
            </table>

1 个答案:

答案 0 :(得分:6)

有一种方法可以做到这一点:

$scope.tableParams.reload();

更新表格显示的数据后,只需调用它即可。


编辑:
首先,我认为你目前使用ngTable是不正确的。我认为最好的做法是将响应数据存储在$ scope变量中,然后将其附加到ngTable,而不是将表直接绑定到响应数据。这样你只需要操作$ scope数据并调用reload 从那里,只需更新存储的数据然后调用reload:

// Store your data in a dedicated variable
$scope.myData = response.list;

// Update ngTable to reflect the new data
if ($scope.tableParams) {
    $scope.tableParams.reload();
} else {
    // create your table as before, 
    // but tying it to $scope.myData 
    // instead of response.list
}