0
每當我嘗試登錄本地安裝,我得到這個錯誤:誤差在註冊時火力權威性的反應程序
"auth/network-request-failed", message: "A network error (such as timeout, interrupted connection or unreachable host) has occurred."}
在註冊時,我只是將用戶重定向到一個新的頁面,就是這些。
我讀到它可能是服務工作人員與create-react-app
作出的問題,但我不完全確定是否是一個好主意,禁用它。
這是我如何處理註冊:
handleSubmit(e) {
e.preventDefault();
firebase.auth()
.createUserWithEmailAndPassword(this.state.emailValue, this.state.passValue)
.catch((error) => {
console.error(error)
})
this.handleAuthChange()
}
handleAuthChange() {
firebase.auth().onAuthStateChanged((user) => {
if (user) {
window.location = 'thank-you'
let email = user.email
console.log(email + " logged in")
} else {
window.location = ""
console.log("not logged in")
}
})
}
我應該如何解決這個問題?
爲我工作,非常感謝:) – VWang