能够在Firestore中存储数据后,如何重定向到另一个HTML文件?

时间:2019-04-23 07:07:25

标签: javascript firebase google-cloud-firestore

  
    
      

我首先将自己的网站数据存储在Firebase实时数据库中,       现在我将其更改为firestore,但是现在我不确定如何       数据发布到Firestore后重定向,我尝试添加location.href =       “ https://dr-elvic-tengco-web.firebaseapp.com/ThankYou.html”;下       console.log(“文档成功写入!”);        是的,它重定向并存储数据

    
         

,当我等待2秒钟后我发现它确实起作用     单击窗口上的“确定”按钮。警报(“已发送约会请求!     请等待您的电子邮件上的确认,否则我们将向您发送txt!”),但是没有人会等待2秒钟,然后您单击“确定”按钮,     对吧?

  
1.000000
-0.059232
0.408143
-0.503169
-0.554996
-0.336158
0.122070
0.389484
0.336810
0.057144
-0.204190
-0.268489
-0.131052
0.069502
0.179210
0.140048
0.010775
-0.098861
-0.115960
-0.047979

1 个答案:

答案 0 :(得分:0)

我通过使用setTimeout找到了另一种方法

.then(function(){                     console.log(“文档成功写入!”);

                setTimeout(function() {
                    location.href = "https://dr-elvic-tengco-web.firebaseapp.com/ThankYou.html";
                }, 2000);
            })
            .catch(function(error) {
                console.error("Error writing document: ", error);
            });