に私のサービスは、次のコードがあります、角度2 `this`参照約束
constructor(){
...
let tt = this;
individual.isAuthenticated().then(this.handleLogin);
...
}
...
handleLogin(d,err){
console.log("This: ",this);
console.log("This: ",tt);
this.nav.present(this.loading);
}
が、handleLogin
に:
....
isAuthenticated(){
var tt = this;
if(tt.current_user){
return Promise.resolve(tt.current_user,false);
}else{
return new Promise(resolve => {
this.http.get(this.api.urlBase+this.api.apiBase+'/Individuals/me',
{withCredentials: true})
.map(res=>res.json())
.subscribe((data) => {
tt.current_user = data;
resolve(data,false);
},(err)=>{
reject(err,true);
});
})
}
}
....
そして、私のページクラスでは、私はそれにアクセスしようとしていますthis.nav
はthis
が未定義であり、コンソールログにはthis
が空白、tt
は未定義と表示されるというエラーが発生します。どのようにその機能内からthis
を参照するのですか?