Khi tôi chạy linter nó nói:
subscribe is deprecated: Use an observer instead of an error callback
Mã (từ một ứng dụng góc 7 với góc-cli):
this.userService.updateUser(data).pipe(
tap(() => {bla bla bla})
).subscribe(
this.handleUpdateResponse.bind(this),
this.handleError.bind(this)
);
Không biết chính xác những gì tôi nên sử dụng và làm thế nào ...
Cảm ơn!
.subscribe({ next: this.handleUpdateResponse.bind(this), error: this.handleError.bind(this) })