具有以下 $resource 服务:
myService.factory('Phones', function ($resource) {
return $resource('/api/Phones', { phoneName: '@phoneName' }, {
submit: { method: 'POST', },
});
});
在返回的 $resource 对象上调用 submit 会将 phoneName 作为参数发布,例如
/api/Phones?phoneName=Nokia
。但是,使用 GET 方法调用相同的资源对象也会使用未定义的 phoneName 参数,例如
/api/Phones?phoneName=undefined
。
是否可以使用相同的 $resource 对象阻止 phoneName 出现在 GET 方法中?
谢谢!