我有一个功能一和Firebase authstatechange功能,但我无法到达外面的两个功能。 代码:
function one() {
firebase.auth().onAuthStateChanged(function(user) {
//code here
function two() {
//code here
}
});
}
// how to call function two here?
答案 0 :(得分:2)
在外部定义function two()
并在onAuthStateChanged
回调
function two() {
//code here
}
function one() {
firebase.auth().onAuthStateChanged(function(user) {
//code here
two()
});
}