2
私はIonic2アプリを開発しています。私は約束を使っています。活字体のクラスでは、私はこの方法約束のヌルオブジェクトAngular2
tapOnRegistrati() {
this.authService.userRegistration(this.email,this.password).then(function(user){
this.user = this.af.database.object('/users/' + user.uid);
this.user.set({ name: this.name, lastname: this.lastname});
}).catch(function(error: any) {
});
}
を作成しましたが、then
ブロックが実行されたときにthis
の参照がnull
あるので、私は私のtypescriptですクラスの任意のオブジェクト/属性を使用することはできません。どうして?