与此问题类似:FB.api only loading on first AJAX call to page
由于我网站的结构,页面是通过 AJAX 加载的。一切正常,除了第二次加载带有该window.fbAsyncInit
功能的页面时,它不起作用。控制台上没有显示任何错误,所有显示的是我的auth-loggedout
div 内容,其中包含 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));