1

与此问题类似:FB.api only loading on first AJAX call to page

由于我网站的结构,页面是通过 AJAX 加载的。一切正常,除了第二次加载带有该window.fbAsyncInit功能的页面时,它不起作用。控制台上没有显示任何错误,所有显示的是我的auth-loggedoutdiv 内容,其中包含 facebook 登录按钮,但单击它没有响应。

我确定我已经登录,因为在上一页加载时我只是使用 api 发布到我的墙上。

有没有办法改变初始化,使其在每次页面加载时都有效?

// Init the SDK upon load
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '<?php echo $appID; ?>', // App ID
      channelUrl : '//domain.co.uk/myoe/channel.html', // Path to your Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });


    // listen for and handle auth.statusChange events
    FB.Event.subscribe('auth.statusChange', function(response) {
        // lots of code
    }; 

  // Load the SDK Asynchronously
   (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "https://connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
4

1 回答 1

1

好的,最终设法解决了它:

if (typeof FB !== 'undefined') {
    // your code from  window.fbAsyncInit = function() {
    // but WITHOUT FB.init({...});
}

因此,如果您将通用代码放在一个函数中,则可以从两者中调用该函数,这样您就不会重复自己。

一个非常令人沮丧的问题的非常直接的答案。

于 2013-03-04T14:16:54.243 回答