リンターを実行すると、次のように表示されます。
subscribe is deprecated: Use an observer instead of an error callback
コード(angular-cliを使用したAngular 7アプリから):
this.userService.updateUser(data).pipe(
tap(() => {bla bla bla})
).subscribe(
this.handleUpdateResponse.bind(this),
this.handleError.bind(this)
);
何をどのように使うべきか正確にはわかりません...
ありがとう!
.subscribe({ next: this.handleUpdateResponse.bind(this), error: this.handleError.bind(this) })