我正在为我的博客在主页上添加一些社交计数器。该博客显示 10 个帖子,并通过无限滚动加载更多帖子。
考虑到每个帖子必须执行 3 个请求,并且还必须显示 10 个帖子 - 这意味着在显示页面之前必须经过 30 个请求。
使用 get_transient / set_transient 似乎可以使页面立即加载,但每小时后,1 人的加载时间会很差 - 只是想知道我是否可以通过使用 jQuery 检查变量是否已更改(如果有,那么使其在页面加载后执行请求)。
我根本不知道 jQuery,希望能得到一些帮助。
function getShares($url){
$fbcount = get_transient('share_count');
if ($fbcount !== false) return $fbcount;
$fbcount = 0;
$fql = "SELECT share_count FROM link_stat WHERE url = '".$url."'";
$apifql = "https://api.facebook.com/method/fql.query?format=json&query=".urlencode( $fql );
$json = file_get_contents( $apifql );
$data = json_decode($json);
$fbcount = $data[0]->share_count;
set_transient('share_count', $fbcount, 60*60);
return $fbcount;
}
function getPlus1($url) {
$gpcount = get_transient('plusone_count');
if ($gpcount !== false) return $gpcount;
$gpcount = 0;
$html = file_get_contents( "https://plusone.google.com/_/+1/fastbutton?url=".urlencode($url));
$doc = new DOMDocument(); $doc->loadHTML($html);
$counter=$doc->getElementById('aggregateCount');
$gpcount = $counter->nodeValue;
set_transient('plusone_count', $gpcount, 60*60);
return $gpcount;
}
function getTweets($url){
$tweetcount = get_transient('tweet_count');
if ($tweetcount !== false) return $tweetcount;
$tweetcount = 0;
$json = file_get_contents( "http://urls.api.twitter.com/1/urls/count.json?url=".$url );
$ajsn = json_decode($json, true);
$tweetcount = $ajsn['count'];
set_transient('tweet_count', $tweetcount, 60*60);
return $tweetcount;
}