Коли я запускаю лінтер, там пише:
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) })