Quand je lance le linter, il dit:
subscribe is deprecated: Use an observer instead of an error callback
Code (à partir d'une application angular 7 avec angular-cli):
this.userService.updateUser(data).pipe(
tap(() => {bla bla bla})
).subscribe(
this.handleUpdateResponse.bind(this),
this.handleError.bind(this)
);
Je ne sais pas exactement ce que je dois utiliser et comment ...
Merci!
.subscribe({ next: this.handleUpdateResponse.bind(this), error: this.handleError.bind(this) })