5

这是我的用户模型:

module.exports = {

    attributes: {

        name: {
            type: 'string',
            required: true,
            minLength: 3,
            maxLength: 30
        },

        username: {
            type: 'string',
            required: true,
        },

        toJSON: function() {
          var obj = this.toObject();
          obj.link = sails.config.globals.baseUrl + sails.config.routes.user + obj.id;
          return obj;
        }
    }
  };

我想要的是使用一些在模型中计算的“预”属性。我的解决方案是在 toJSON() 函数中注入 attr,但在视图中我必须使用:

<%= users.toJSON().link %> 

有一种方法可以为用户创建一个属性或一些方法吗?喜欢:

module.exports = {

       attributes: {

        name: {
            type: 'string',
            required: true,
            minLength: 3,
            maxLength: 30
        },
        myPersonalAttribute: function(){
           return "Value"   
        }
}
4

2 回答 2

2

您可以使用属性方法返回派生值。在此处查看我对您的 github 问题的回复:https ://github.com/balderdashy/waterline/issues/626#issuecomment-54192398

于 2014-09-02T18:47:00.107 回答
0
module.exports = {

    attributes: {

        name: {
            type: 'string',
            required: true,
            minLength: 3,
            maxLength: 30
        },

        myPersonalAttribute: function() {
            return "Value"
        },

        toJSON: function() {
            var obj = this.toObject()
            obj.myPersonalAttribute = this.myPersonalAttribute()
            return obj
        }
    }
}
于 2016-11-23T11:52:50.153 回答