Angular2 v6-ng-通知

时间:2018-09-04 12:04:46

标签: angular

我在创建异步通知时遇到问题。 我想做什么:

我的Component.ts:

单击按钮可运行一个功能:

onSubmit() {

    // when function is used show notification - async

    this.User.someFunction(this.form).subscribe(
      data => this.handleResponse(data),
      error => this.handleError(error.error.error)
    );
  }

handleError(error){
  // Change async into error notification with some data
}
handleResponse(data){
  // Change async into success notification with some data
}

我暂时使用了物料微调器,该微调器在功能运行后显示,并在服务器响应错误或成功后将其隐藏。

0 个答案:

没有答案