0
我正在使用UI網格編輯單元格功能。我需要將編輯的單元格值更新到數據庫。我怎麼能這樣做。我使用rest api作爲後端。 還我該如何行的控制器
我的工作代碼在UI網格中使用後端休息API保存更新的數據編輯單元格功能
var app = angular.module('app', ['ngTouch', 'ui.grid', 'ui.grid.edit']);
app.controller('MainCtrl', ['$scope', '$http', function ($scope, $http) {
$scope.gridOptions = { };
$scope.gridOptions.columnDefs = [
{ name: 'id', enableCellEdit: false},
{ name: 'name' },
{ name: 'age', displayName: 'Age' , type: 'number', width: '10%' }
];
$http.get('https://cdn.rawgit.com/angular-ui/ui-grid.info/gh-pages/data/500_complex.json')
.success(function(data) {
$scope.gridOptions.data = data;
});
}])
http://plnkr.co/edit/kAQnXGTn12Z7v8w16RL9?p=preview