我在网站中使用 FB Javascript SDK,似乎 channel.php 文件强制我的内容不刷新。在 channel.php 文件中,我有以下内容:
<?php
$cache_expire = 60*60*24*365;
header("Pragma: public");
header("Cache-Control: maxage=".$cache_expire);
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+$cache_expire) . ' GMT');
?>
<script type="text/javascript" src="//connect.facebook.net/en_US/all.js"></script>
需要使用 SDK 的网站的每个页面都在开始标记的正下方包含以下内容:
<div id="fb-root"></div>
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $cfg['fb_app_id']; ?>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : '<?php echo $cfg['http_prefix'].$cfg['domain_name'].'/'; ?>channel.php', // Custom Channel URL
oauth : true //enables OAuth 2.0
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
(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#appId=<?php echo $cfg['fb_app_id']; ?>&xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
似乎在浏览器缓存中调用此文件的页面“陈旧”。我离开办公室一天,返回后页面仍然包含它们的旧内容,直到我在页面上进行了 shift-click 重新加载。有什么想法吗?