1

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

4

0 に答える 0