我制作了一个HTML页面index.html
,其中包含两个脚本,其中包括firebase应用程序,但是每次运行该页面时,只有一个脚本有效,而另一个脚本则向我发送此消息Firebase: Firebase App named '[DEFAULT]' already exists (app/duplicate-app).
在两个脚本文件中,我添加了我的firebase应用配置信息:
var config = {
apiKey: "U",
authDomain: "tm",
databaseURL: "ht",
projectId: "tc",
storageBucket: "teom",
messagingSenderId: "58665"
};
firebase.initializeApp(config);
如何使用同一个Firebase应用程序运行两个脚本?
答案 0 :(得分:0)
在一个页面中只能初始化一个Firebase应用程序。
删除firebase.initializeApp(config);
以执行您想要的操作。