私はajax呼び出しの応答が完了したときに実行されるこのコールバック(subscribe)を持っています。Typescriptコールバックで複数行のJavaScriptコードを作成/変換するにはどうすればよいですか?
(function (res) {
return _this.isLoginSuccess = res;
console.log(this.isLoginSuccess);
this.router.navigateByUrl('/employees');
});
私は活字体に新しいです:
(function (res) { return _this.isLoginSuccess = res; });
console.log(this.isLoginSuccess);
this.router.navigateByUrl('/employees');
私はtranspilationになりたい:に
this.workerService.isLogin()
.subscribe(res => this.isLoginSuccess = res;
console.log(this.isLoginSuccess);
this.router.navigateByUrl('/employees');
);
それのtypescriptですが、それは同じです。
これは*本当に*代わりに何もtranspilingの構文エラーを投げている必要があります。 – Bergi
@Bergi:Noted。学ぶ::)) –