这是我的用户模型:
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"
}
}