如何从 AngularJS 请求一组数据库条目$resource
,这将允许我修改$save()
单个对象?
我有以下代码获取我的数据:
var VisitorLog = $resource('/visitorLog/api/v1/entry/:id',
{ id: '@id' }
);
VisitorLog.get(
{
'group__exact': $routeParams.groupId,
'order_by': 'name'
},
function(response) {
$scope.people = response.objects;
},
function(response) {
console.log("failed!")
console.log(response);
}
);
我想做的是类似于:
$scope.people[0].date = today;
$scope.people[0].$save();
这将允许我更新 UI(我有一个ng-class
观察date
变量)并在一次调用中保存到数据库。我能做到吗?