linter를 실행하면 다음과 같이 표시됩니다.
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) })