gpt4 book ai didi

angularjs - ngResource 中的虚拟属性

转载 作者:行者123 更新时间:2023-12-04 10:51:06 26 4
gpt4 key购买 nike

是否可以向 ngResource 添加虚拟属性?
我创建了这样的服务

app.factory('Person', ['$resource', function($resource) {

return $resource('api/path/:personId', {
personId: '@_id'
}, {
update: {
method: 'PUT'
}
});
}])
Person有一个属性 name和一个属性 surname .
我想检索 fullname通过添加虚拟属性 fullname返回 resource.name + resource surname .
我知道我可以将它添加到 Controller 中,但是将它添加到服务中会使其更便携。
我尝试过这样的事情
app.factory('Person', ['$resource', function($resource) {

return $resource('api/path/:personId', {
personId: '@_id'
}, {
update: {
method: 'PUT'
},
fullname: function(resource){
return resource.name + ' ' + resource.surname;
}
});
});
}])

但它不起作用。

最佳答案

你可以试试intercepting来自 Person 资源的响应并增加响应。像这样:

app.factory('Person', ['$resource', function($resource) {
function getFullName(){
return this.name + ' ' + this.surname;
};

return $resource('api/path/:personId', {
personId: '@_id'
}, {
update: {
method: 'PUT'
},
'get': {method:'GET', isArray:false,interceptor:{
'response': function(response) {
response.fullname = getFullName; //augment the response with our function
return response;
}
}}
});
}]);

关于angularjs - ngResource 中的虚拟属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24038244/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com