正在获取超时或中断的错误消息

时间:2018-11-10 11:52:10

标签: javascript html firebase-authentication registration

我收到此错误:

A network error (such as timeout, interrupted connection or unreachable host) has occurred  

我只想使用以下方法注册一个新用户:

firebase.auth().createUserWithEmailAndPassword(userEmail, userPassword).catch(function(error) {
    var errorCode = error.code;
    var errorMessage = error.message;

    window.alert(errorMessage);
    });  

我读到一些要运行的内容:

-cordova plugin remove cordova-plugin-whitelist--

--cordova plugin add cordova-plugin-whitelist--   

但是我不使用科尔多瓦。而且我还在firebase身份验证部分添加了正确的域。
我希望有人能帮助我。

0 个答案:

没有答案