如何使用默认用户模型通过 FireLoop 实现 resetPassword?

How do I implement resetPassword with FireLoop using the default user-model?

所以在我的 /xyz.component.ts 中,我从 /user.ts 调用 resetPassword 方法。在 LoopBack 文档中它说:

Calling User.resetPassword ultimately emits a resetPasswordRequest event and creates a temporary access token.

但是我该如何赶上这个活动呢?如果我尝试应用 .on('resetPasswordRequest', ()=>{....}) 它告诉我 UserApi 没有 'on'。


/xyz.component.ts

 private resetPassword(){
    this.userApi.resetPassword({email: this.userName}).subscribe((data : any)=>{
        console.log(data);
    },(error : any) => {
        this.error = error;
      }
    );
    console.log("error: " , this.error);
  }

/user.ts

  public resetPassword(options: any, customHeaders?: Function): Observable<any> {
    let _method: string = "POST";
    let _url: string = LoopBackConfig.getPath() + "/" + LoopBackConfig.getApiVersion() +
    "/Users/reset";
    let _routeParams: any = {};
    let _postBody: any = {
      options: options
    };
    let _urlParams: any = {};
    let result = this.request(_method, _url, _routeParams, _urlParams, _postBody, null, customHeaders);
    return result;
  }

MROALI 非常友好地帮助我解决了关于 GitHub 的问题。 因此,要捕获 'resetPasswordRequest' 事件,您需要做的是像这样编辑用户模型(或扩展用户模型,如果您不使用默认值)的构造函数:

  constructor(public model: any) {
     model.on('resetPasswordRequest', function (info:any) {
     console.log("do something");
     })
   }