我正在关注 ng-table 的第一个示例(http://bazalt-cms.com/ng-table/example/1)。
除了 tableParams 之外,一切似乎都有效。一旦我将它包含在控制器中,页面中就不会显示任何内容。
示例和我的代码之间的区别在于我从 json 服务加载数据:
angular.module('mean.cars').controller('CarsController', ['$scope', '$stateParams', '$location', 'Global', 'Cars',
function ($scope, $stateParams, $location, Global, Cars, ngTableParams) {
$scope.global = Global;
var data = Cars.query();
$scope.tableParams = new ngTableParams({
page: 1, // show first page
count: 10 // count per page
}, {
total: data.length, // length of data
getData: function($defer, params) {
$defer.resolve(data.slice((params.page() - 1) * params.count(), params.page() * params.count()));
}
});
Cars.query(); 运行良好(经过测试)。那么我错过了什么?以下行有一个 javascript 错误:“未定义不是正在发生的函数”:
$scope.tableParams = new ngTableParams({