无法设置属性'变量'在Firebase上为null

时间:2017-01-16 02:54:11

标签: typescript firebase ionic-framework firebase-realtime-database ionic2

我有这段代码来检查连接到互联网的Firebase。但问题表明即使我在this.total_downloaded=1之前宣布为construct(),我的public total_downloaded=0也无法设置。

enter image description here

为什么会这样?难道我不能轻易使用我的功能或设置变量吗?

有人能帮助我吗?谢谢。这是我的代码:

public this.total_downloaded = 0;
//...
var connectedRef = firebase.database().ref('/.info/connected');
connectedRef.once("value", function(snap) {
    if (snap.val() === true) {
        firebase.database()
            .ref("last_update")
            .once('value', (snap_0) => {
                if (data.rows.item(0).value != snap_0.val().value) {
                    this.update_hok_baghu(db);

                    var query_insert_last_update = "UPDATE last_update SET value =" + snap_0.val().value + "";
                    db.executeSql(query_insert_last_update, []).then(() => {
                    }, (error) => {
                        console.log("ERROR on update to last_update: " + JSON.stringify(error));
                    });

                } else {
                    this.total_downloaded = 1;
                }
            });
    } else {
        this.total_downloaded = 1;
    }
});

1 个答案:

答案 0 :(得分:3)

您使用常规函数作为回调function(snap)。 因此,this条件中的else是指回调函数,而不是您的类。

使用箭头功能:

connectedRef.once("value", (snap)=> {
    if (snap.val() === true) {
        firebase.database()
            .ref("last_update")
            .once('value', (snap_0) => {
                if (data.rows.item(0).value != snap_0.val().value) {
                    this.update_hok_baghu(db);

                    var query_insert_last_update = "UPDATE last_update SET value =" + snap_0.val().value + "";
                    db.executeSql(query_insert_last_update, []).then(() => {
                    }, (error) => {
                        console.log("ERROR on update to last_update: " + JSON.stringify(error));
                    });

                } else {
                    this.total_downloaded = 1;
                }
            });
    } else {
        this.total_downloaded = 1;//this will refer to class now.
    }
});