当我运行lint时,它说:
subscribe is deprecated: Use an observer instead of an error callback
代码(来自带有angular-cli的angular 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) })