最佳答案
当我打开缰绳时,上面写着:
subscribe is deprecated: Use an observer instead of an error callback
这个angular应用中的代码:
this.userService.updateUser(data).pipe(
tap(() => {bla bla bla})
).subscribe(
this.handleUpdateResponse.bind(this),
this.handleError.bind(this)
);
我不知道该用什么,怎么用……
谢谢!