我是Angular的新手。我創建了一個應用程序,只要點擊一個按鈕,應該會觸發一個調用,它會獲取一組json對象並填充特定的表。在下面的控制器代碼中,我設法直接填充表格,而不需要單擊按鈕(通過this.tableParams),但我想要的是觸發此數據獲取過程並僅在populateTable()函數爲叫。我該怎麼做?在Angular中動態填充表格
(function() {
'use strict';
angular
.module('anomalies')
.controller('controller', ['$log', '$scope', '$http', 'NgTableParams', function ($log, $scope, $http, NgTableParams) {
$scope.populateTable = function() {
//
}
this.tableParams = new NgTableParams({}, {
filterDelay: 300,
getData: function (params) {
return $http({
method: 'GET',
url: '/server/data.json'
}).then(function (response) {
return response.data;
}, function (response) {
$log.log(response);
return [];
});
}
});
}]);
})();