您可以在下面看到我的代码,使用restangular从我的数据库中更改记录。
Restangular.one("/mywebsite/bin/server.fcgi/REST/players", "70").get().then(function(c){
$scope.content = c;
})
$scope.content.Name= "Asqan";
$scope.content.put();
当我尝试将其作为我的代码的最后一行时,它会给出错误:
PUT http://localhost/mywebsite/bin/server.fcgi/REST/players 404 (Object not found)
ps:添加或获取没有其他问题。
答案 0 :(得分:0)
你应该在then函数中执行它,
Restangular.one("/mywebsite/bin/server.fcgi/REST/players", "70").get().then(function(c){
$scope.content = c;
$scope.content.Name= "Asqan";
$scope.content.put();
})