タグ付けされた質問 「subscribe」

4
サブスクライブは非推奨です:エラーコールバックの代わりにオブザーバーを使用してください
リンターを実行すると、次のように表示されます。 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) ); 何をどのように使うべきか正確にはわかりません... ありがとう!
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.