เมื่อฉันเรียกใช้ linter มันจะบอกว่า:
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) })