AngularJS $资源创建新对象而不是更新对象

时间:2013-03-03 23:19:22

标签: rest angularjs

// Set up the $resource
$scope.Users = $resource("http://localhost/users/:id");

// Retrieve the user who has id=1
$scope.user = $scope.Users.get({ id : 1 }); // returns existing user

// Results
{"created_at":"2013-03-03T06:32:30Z","id":1,"name":"testing","updated_at":"2013-03-03T06:32:30Z"}

// Change this user's name
$scope.user.name = "New name";

// Attempt to save the change 
$scope.user.$save();

// Results calls POST /users and not PUT /users/1
{"created_at":"2013-03-03T23:25:03Z","id":2,"name":"New name","updated_at":"2013-03-03T23:25:03Z"}

我希望这会导致带有更改属性的PUT到/ users / 1。但它改为POST给/ users,它会创建一个新用户(新的id和新名称)。

有什么我做错了吗?

AngularJS v1.0.5

2 个答案:

答案 0 :(得分:8)

你只需要告诉$资源,他如何将路由参数“:id”绑定到JSON对象:

$scope.Users = $resource("http://localhost/users/:id",{id:'@id'});

这应该有用, 问候

答案 1 :(得分:0)

谢谢你的回答。它最终也适用于我。 作为旁注,我使用的是.NET WEB API,我的实体有一个Id属性(UPPER CASE“I”)。 PUT和DELETE仅在我使用以下内容后才起作用:

$scope.Users = $resource("http://localhost/users/:Id",{Id:'@Id'});

希望它有所帮助。