Linter'i çalıştırdığımda şöyle diyor:
subscribe is deprecated: Use an observer instead of an error callback
Kod (açısal uçlu açısal 7 uygulamasından):
this.userService.updateUser(data).pipe(
tap(() => {bla bla bla})
).subscribe(
this.handleUpdateResponse.bind(this),
this.handleError.bind(this)
);
Tam olarak ne kullanmalıyım ve nasıl bilmiyorum ...
Teşekkürler!
.subscribe({ next: this.handleUpdateResponse.bind(this), error: this.handleError.bind(this) })