我使用 ng-resource 从我的服务器获取数据,然后将数据放入表格网格中,如下所示:
<div ng-form name="grid">
<button type="submit" data-ng-disabled="grid.$pristine">Save</button>
<div class="no-margin">
<table width="100%" cellspacing="0" class="form table">
<thead class="table-header">
<tr>
<th>ID</th>
<th>Title</th>
</tr>
</thead>
<tbody class="grid">
<tr data-ng-repeat="row in grid.data">
<td>{{ row.contentId }}</td>
<td><input type="text" ng-model="row.title" /></td>
</tr>
</tbody>
</table>
</div>
</div>
有没有一种方法可以使单击“提交”按钮通过网格检查已更改的行,然后putEntity(row)
以该行作为参数调用函数?