我正在尝试更新视图中对象的数据,我的服务如下所示:
.service('Tag', function Tag($resource, API) {
return $resource(API.baseUrl + '/api/tags/:id', { id:'@_id' }, {
update: {
method: 'PUT', params: {id: '@id'}},
delete: {
method: 'DELETE', params: {id: '@id'}}
})
});
我的控制器
angular.module('myApp')
.controller('EditorTagsCtrl', function ($scope, Tag,$routeParams) {
$scope.tag = Tag.query()
$scope.updateTag = function()
{
Tag.update()
console.log ('working?')
}
});
我收到404错误,数据没有传递到后端。
请帮忙