Angularjs:$ resource将json封装到一个对象中

时间:2015-06-08 11:25:56

标签: json angularjs

我有 $ resource 名为 Livres 我需要发送到我的API,等待 json 输入如下:

{livres: {
  id: 1
  name: "bidule"
}}

这是资源:

angular.module('TestApp').factory('Livres', [
  '$resource', function($resource) {
    return $resource('api/v1/livres/:id', {
      id: '@_id'
    }, {
      update: {
        method: 'PUT'
      }
    });
  }
]);

要保存的被叫方法:

$scope.addLivres = function() { //create a new livres. Issues a POST to /api/livress
  $scope.livres.$save(function() {
    $state.go('adminLivres'); // on success go back to admin home i.e. adminLivres state.
  });
};

这只发送一个类似

的json
  {id: 1
  name: "bidule"}

如何将json发送封装成livres {}?

0 个答案:

没有答案