this.data 为 null - Facebook 评论

发布于 2024-12-02 07:13:47 字数 1156 浏览 0 评论 0原文

我有这个代码:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en" lang="en">
<head>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
</head>
<body>

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
  FB.init({
     appId  : '167549853323291',
     status : true, // check login status
     cookie : true, // enable cookies to allow the server to access the session
     xfbml  : true  // parse XFBML
  });
};
</script>
<fb:comments href="http://auto.receptie.ro/test.html"></fb:comments>
</body>
</html>

这是链接: http://auto.receptie.ro/test.html< /a>

当我点击输入框时,firebug返回错误:

this.data is null
http://static.ak.fbcdn.net/rsrc.php/v1/yA/r/HG9KOfvPTU4.js
Line 59

然后我点击出去,再次点击输入框,firebug返回错误:

this._input is undefined
http://static.ak.fbcdn.net/rsrc.php/v1/yA/r/HG9KOfvPTU4.js
Line 56

I have this code:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en" lang="en">
<head>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
</head>
<body>

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
  FB.init({
     appId  : '167549853323291',
     status : true, // check login status
     cookie : true, // enable cookies to allow the server to access the session
     xfbml  : true  // parse XFBML
  });
};
</script>
<fb:comments href="http://auto.receptie.ro/test.html"></fb:comments>
</body>
</html>

and this is the link: http://auto.receptie.ro/test.html

When I click in the input box, firebug return error:

this.data is null
http://static.ak.fbcdn.net/rsrc.php/v1/yA/r/HG9KOfvPTU4.js
Line 59

Then I click out and click again in the input box, firebug return error:

this._input is undefined
http://static.ak.fbcdn.net/rsrc.php/v1/yA/r/HG9KOfvPTU4.js
Line 56

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

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

发布评论

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

评论(1

很酷不放纵 2024-12-09 07:13:47

您不需要请求 XFBML 解析两次;这可能会导致错误。

尝试从 Facebook JavaScript SDK 源 URL 中删除 #xfbml=1。它与 FB.init() 中的 xfbml: true 冲突。

You don't need to request XFBML parsing twice; this can cause errors.

Try removing #xfbml=1 from the Facebook JavaScript SDK source URL. It conflicts with the xfbml: true in FB.init().

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