如何从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
变量)并在一次调用中保存到数据库。我能做到吗?