尝试在我的mongoose架构上设置方法以隐藏密码。有这个:
UserSchema.methods.apiRepr = () => {
return {
firstName: this.firstName,
lastName: this.lastName,
username: this.username,
id: this._id
}
}
我试图符合ES6并将其更改为箭头功能:
{{1}}
它不起作用。 mongoose不支持ES6吗?