angularjs – ngResource中的虚拟属性

前端之家收集整理的这篇文章主要介绍了angularjs – ngResource中的虚拟属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以向ngResource添加虚拟属性
我创建了这样的服务
app.factory('Person',['$resource',function($resource) {

  return $resource('api/path/:personId',{
    personId: '@_id'
      },{
        update: {
          method: 'PUT'
        }
      });
}])

Person具有属性名称属性姓氏.
我想通过添加返回resource.name resource surname的虚拟属性fullname来检索fullname.
我知道我可以在控制器中添加它,但是将它添加到服务中会使它更加便携.
我试过这样的事

app.factory('Person',{
        update: {
          method: 'PUT'
        },fullname: function(resource){
      return resource.name + ' ' + resource.surname;
    }
  });
 });
}])

但它不起作用.

您可以尝试 intercepting来自Person资源的响应并增加响应.像这样:
app.factory('Person',function($resource) {
  function getFullName(){
      return this.name + ' ' + this.surname;
  };

  return $resource('api/path/:personId','get': {method:'GET',isArray:false,interceptor:{
              'response': function(response) {
                  response.fullname = getFullName; //augment the response with our function
                  return response;
               }
         }}
      });
}]);
原文链接:https://www.f2er.com/angularjs/141209.html

猜你在找的Angularjs相关文章