显示 Facebook 社交插件时出错

发布于 2024-12-07 12:41:25 字数 796 浏览 0 评论 0原文

我在使用 Facebook 社交插件时遇到问题。如果它很重要,我会使用 GWT 在 HTML widjet 中显示代码,

我将其放入我的 html 中

<script>
(function(d, s, id) 
{     var js, fjs = d.getElementsByTagName(s)[0];
if    (d.getElementById(id)) {return;}    
js = d.createElement(s); js.id = id;      
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";  
fjs.parentNode.insertBefore(js, fjs);   
}(document, 'script', 'facebook-jssdk'));   
</script>   
<fb:comments width="600" num_posts="2" href="http://www.woojah.com"></fb:comments>

,并且不会显示任何内容。但是,如果我用 firebug 打开源代码,然后剪切该代码并再次粘贴,它就会显示。就好像该代码需要特殊的“刷新”或“重新加载”。顺便说一句,我从developers.facebook.com 页面获取了该代码。这是社交插件评论代码。

我的html标签也是 < /code>

所以我的问题是:有谁知道为什么评论插件不显示以及为什么当我用 firebug 剪切并粘贴完全相同的代码时它会显示。

Im having problems using the Facebook social plugins. If its important, I use GWT to display the code inside an HTML widjet

I put this in my html

<script>
(function(d, s, id) 
{     var js, fjs = d.getElementsByTagName(s)[0];
if    (d.getElementById(id)) {return;}    
js = d.createElement(s); js.id = id;      
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";  
fjs.parentNode.insertBefore(js, fjs);   
}(document, 'script', 'facebook-jssdk'));   
</script>   
<fb:comments width="600" num_posts="2" href="http://www.woojah.com"></fb:comments>

And nothing is displayed. However, if I open the source code with firebug, and I cut that code and paste it again, it is displayed. It is as if that code needs a special "refreshing" or "reloading". By the way, I got that code from the developers.facebook.com page. It's the social plugin comment code.

Also my html tag is <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="https://www.facebook.com/2008/fbml">

So my question is: Does anyone know why the comment plugin is not displayed and why, when I cut and paste the exact same code with firebug it is displayed.

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

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

发布评论

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

评论(1

書生途 2024-12-14 12:41:25

在使用 GWT 将代码插入小部件后,您可能需要考虑使用 FB.XFBML.parse() 命令让 SDK 重新解析页面。

You may want to look into using the FB.XFBML.parse() command to have the SDK reparse the page after you use GWT to insert the code inside your widget.

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