在IBM回送4中,我可以对模型属性使用getter和setter吗?

时间:2019-06-20 19:09:16

标签: typescript model loopbackjs

当我生成带有回送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);
}

0 个答案:

没有答案