私は角度が初めてで、ng-grid プラグインを使用して CRUD アプリを作成しようとしています。必要な情報を取得する Web の例を見つけましたが、REST ルートを使用して情報を更新する方法についての適切な説明ではありません。コードは次のとおりです。
// Configure ng-grid
$scope.gridOptions = {
data: 'myData',
enableCellEdit: true,
multiSelect: false,
columnDefs: [
{ field: 'Id', displayName: 'Id' },
{ field: 'Name', displayName: 'Name', enableCellEdit: true, editableCellTemplate: cellEditableTemplate },
{ field: 'Description', displayName: 'Description', enableCellEdit: true, editableCellTemplate: cellEditableTemplate }
]
};
// Update Entity on the server side
$scope.updateEntity = function (column, row) {
console.log(row.entity);
console.log(column.field);
// code for saving data to the server...
// row.entity.$update() ... <- the simple case
}
次の例を使用してモデルを更新するにはどうすればよいですか?
row.entity.$update()