これは私のUsers.modelです:
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"
}
}