我正在使用 ag-grid 。但我无法使用 $scope.gridOptions.api.setRowData 方法从 json 中绘制数据。仅显示标题。数据未在 UI 中绘制。
找到下面的代码
myApp.controller("getProfitabilityDetailsController", function($scope, $http) {
var columnDefs = [
{headerName: 'quantity',field: 'quantity', width: 150},
{headerName: 'finyear',field: 'finyear', width: 150}
];
$scope.gridOptions = {
columnDefs: columnDefs
};
$http.get("partials/profitability/mock/profitability_details.json")
.then(function(result){
$scope.gridOptions.api.setRowData(result.data.response);
});
});