如何调用Firebase auth函数内的函数?

时间:2018-02-20 16:41:01

标签: javascript function firebase nested call

我有一个功能一和Firebase authstatechange功能,但我无法到达外面的两个功能。 代码:

function one() {

    firebase.auth().onAuthStateChanged(function(user) {
        //code here

        function two() {
            //code here
        }
    });
}
// how to call function two here?

1 个答案:

答案 0 :(得分:2)

在外部定义function two()并在onAuthStateChanged回调

内调用它
function two() {
   //code here
}

function one() {
    firebase.auth().onAuthStateChanged(function(user) {
        //code here
        two()
    });
}