0

我在链接 https://github.com/Pancake-CMS/authentication-page/blob/master/authentication-page.html中有一个聚合物元素

在第 55 行,我有一个绑定了对象的firebase-app元素。config

当第local-configurator51 行的元素获得更新配置时,它会触发handleConfigChange更新config对象的函数。

问题如下。

firebase-app元素似乎没有显示更新的配置。或者即使它获得了更新的属性,它似乎也没有重新初始化 firebase 应用程序。

我不确定代码中缺少什么。我想知道是否有人可以指出我正确的方向。

谢谢

4

1 回答 1

0

从文档:

The firebase-app element is used for initializing and configuring your
connection to firebase. It is permanently initialized once attached and
should not be dynamically bound.

话虽如此,如果您想为 firebase-app 元素进行动态配置。当配置更改时自己创建它并以这种方式设置对象

var fapp = document.createElement("firebase-app");
fapp.authDomain = ...
于 2016-08-09T16:24:19.420 回答