Когда я запускаю линтер, он говорит:
subscribe is deprecated: Use an observer instead of an error callback
Код (из приложения angular 7 с angular-cli):
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) })