0
我有一個ng-grid的問題。 我一直在尋找使用從web api加載的數據來設置ng-grid。ng-grid,AngularJs,使用web API
app.controller("ManualPriceAdjustmentController", function ($scope, $http) {
$scope.transactions = '';
$scope.gridOptions = { data: 'transactions' };
var path = '/api/ManualPriceAdjustments';
function fetchData() {
setTimeout(function() {
$http({
url: path,
type: 'GET'
})
.success(function (data) {
$scope.transactions = data;
if (!$scope.$$phase) {
$scope.$apply();
}
});
}, 10000);
}
fetchData();
});
但是我在我的網格顯示「正在加載...」,即使從調用讀取數據回完成所有的時間。
有人對你能指出我什麼我做錯了任何方向?
HTML:
<div>
<div ag-grid="gridOptions" class="ag-fresh" style="height: 100%;"></div>
謝謝!
你能告訴模板? –
嗨Kobi,我已經添加了HTML。 –