我正在尝试重定向,当我从firebase获取数据时。 如果它为null或为空,则无需重定向。
我正在尝试使用this.navCtrl.push(ProspectPage);
,但不知道为什么它不起作用
它会返回错误
TypeError: this is null
这是我的代码,请检查一下,让我知道我在这里做错了什么。
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { ProspectPage } from '../prospect/prospect';
import * as firebase from 'firebase';
@Component({
selector: 'page-credentials',
templateUrl: 'credentials.html'
})
export class CredentialsPage {
constructor(public navCtrl: NavController) {
}
register(params){
// this.navCtrl.push(ProspectPage); // if i wrote here then it works
ref.orderByChild("ssn").equalTo(1234).on("value", function(snapshot) {
if(snapshot.val())
{
this.navCtrl.push(ProspectPage);
}
});
}
}
见register()有一条评论。如果我在函数的开头添加this.navCtrl.push(ProspectPage);
然后它工作。但是当我从firbase获取数据时,它应该可以工作。
这是我的HTML代码。
<button id="credentials-button1" ion-button color="stable" block on-click="register()"> Lets go! </button>
答案 0 :(得分:5)
您的问题的答案是arrow functions:
箭头函数表达式的语法短于函数 表达式并不绑定它自己的this,arguments,super或 new.target。
register(params) {
ref.orderByChild("ssn").equalTo(1234).on("value", (snapshot) => {
if(snapshot.val()) {
this.navCtrl.push(ProspectPage);
}
});
}
请注意(snapshot) => {...}
而不是function(snapshot) {...}
答案 1 :(得分:0)
示例:
this.a = 100;
let arrowFunc = () => {this.a = 150};
function regularFunc() {
this.a = 200;
}
console.log(this.a)
arrowFunc()
console.log(this.a);
regularFunc()
console.log(this.a);
/*
Output
100
150
150
*/
您更正的代码是:
register(params){
// this.navCtrl.push(ProspectPage); // if i wrote here then it works
//convert to arrow function
ref.orderByChild("ssn").equalTo(1234).on("value", (snapshot)=> {
if(snapshot.val())
{
this.navCtrl.push(ProspectPage);
}
});
}