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
ます)、1 回の呼び出しでデータベースに保存できます。私はこれを行うことができますか?