我有 $ 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 {}?