这是我的UserService
angular.module('userServices', ['ngResource']).factory('User', function($resource) {
return $resource('/users/:userId',
// todo: default user for now, change it
{userId: 'bd675d42-aa9b-11e2-9d27-b88d1205c810'},
{update: {method: 'PUT', params:{profile: '@profile'}, isArray: false}}
);
});
在我的控制器中,我做
$scope.save = function() {
$scope.user.$update({profile: $scope.profile});
}
但是当我在 Chrome 中看到“网络”选项卡时,我看到了
Request URL:http://localhost:5000/users/bd675d42-aa9b-11e2-9d27-b88d1205c810?profile=%5Bobject+Object%5D
Request Method:PUT
Status Code:200 OK
如何将其作为data
有效负载发送?所以URL
就是
http://localhost:5000/users/bd675d42-aa9b-11e2-9d27-b88d1205c810
数据如下
{
day_in_month: 5
}
我的端点希望数据是请求的一部分,以便它可以将其解析为request.json
谢谢