我正在关注 Angular 主页,并扩展了 $resource 以添加如下更新方法:
angular.module('user', ['ngResource']).
factory('User', function($resource) {
var User= $resource('/user/:id', {
update: {
method: 'PUT'
}
});
User.prototype.update = function(cb) {
return User.update({ // this line throws the error
id: this.id
}, angular.extend({}, this, {
_id: undefined
}), cb);
};
但是运行:
$scope.user.update()
抛出TypeError: Object function h(a){v(a||{},this)} has no method 'update'
我现在看不到我缺少的东西,任何帮助表示赞赏