Firefox错误 - 拒绝访问属性的权限“assign”

时间:2016-11-22 04:43:48

标签: firebase-authentication

当我按照Firebase documents for installing Authentication上的说明并且仅使用Firefox时,我在Firefox中收到此错误。我认为它与同源政策有关,来自我所做过的所有阅读。

是否需要进行解决方案,或者这是Firebase需要解决的问题?或者还有其他解决方案吗?

1 个答案:

答案 0 :(得分:0)

我们也看到了这个问题。 “document.domain”修正案详见

https://developer.mozilla.org/en-US/docs/Web/Security/Same-origin_policy

为我们解决了。具体来说,我们在html文件的head部分添加了这一行:

<script>document.domain = "[your domain name goes here]"</script>

[您的域名在此处]是一致的,例如相关html文件中的mysite.com值。