从单个AngularJS资源中获取多个可用CRUD的对象

时间:2013-05-09 00:19:37

标签: angularjs crud angularjs-resource

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

0 个答案:

没有答案