当我生成带有回送cli(lb4 model
)的模型时,我会得到具有某些属性的模型。我专门尝试设置一个散列器来散列用户实体密码。
最初,我得到以下代码:
@property({
type: 'string',
required: true,
})
password: string;
我想知道是否可以将代码更改为此:
@property({
type: 'string',
required: true,
})
private _password: string;
set password(password: string) {
this._password = Password.hash(password);
}