Facebook JS SDK 无法在 Safari 上运行

发布于 2025-01-01 21:34:56 字数 327 浏览 0 评论 0原文

我已经在我的网站中使用了 Facebook SDK 的实现。它在除 Safari 之外的所有浏览器上都能正常工作,Safari 偶尔会无法加载 Facebook Connect 按钮。

查看 JS 错误我收到以下消息。它们来自 FB 的 JS 库 all.js。有人有什么想法吗?

The "fb-root" div has not been created. (all.js Line 3)
TypeError: 'undefined' is not an object (evaluating 'e.root.appendChild') (all.js Line 6)

I've got an implementation of the Facebook SDK that I'm using in my site. It works great on every browser minus Safari where occasionally the Facebook Connect button won't load.

Looking at the JS errors I'm getting the following messages. They're coming from all.js which is FB's JS library. Anyone got any ideas?

The "fb-root" div has not been created. (all.js Line 3)
TypeError: 'undefined' is not an object (evaluating 'e.root.appendChild') (all.js Line 6)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

猫性小仙女 2025-01-08 21:34:56

使用 Facebook 的 all.js 时,您需要确保将 id 设置为 fb-rootdiv 通常位于 body 标记下方。确保你有:

......
<body>
<div id="fb-root"></div>
<script>
// facebook js code here
</script>

你发布的错误消息清楚地表明它没有找到这样的 div,这意味着你应该将它放在你的页面上,如上所示。

When working with Facebook's all.js, you need to make sure that you have div with id set to fb-root typically below the body tag. Make sure you have:

......
<body>
<div id="fb-root"></div>
<script>
// facebook js code here
</script>

The error message you have posted clearly says it does not find such div which means you should have it on your page like shown above.

芯好空 2025-01-08 21:34:56

你有多少个 fb-root div?如果您有多个,可能会混淆 Safari 浏览器上的 API。

How many fb-root divs do you have? If you have multiple it might confuse the API on the Safari browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文