जब मैं लिंटर चलाता हूं तो यह कहता है:
subscribe is deprecated: Use an observer instead of an error callback
कोड (कोणीय-क्ली के साथ एक कोणीय 7 ऐप से):
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) })