2 回答
2014 年 11 月 3 日更新:
我们现在有一种方法可以在您想要的任何元素上使用评论计数。常规count.js脚本现在可以工作,如果您:
- 使用一个
disqus-comment-count
类 AND - 使用
data-disqus-url
ORdata-disqus-identifier
属性
所以现在这些元素中的任何一个都可以工作:
<span class="disqus-comment-count" data-disqus-url="http://example.com/path-to-thread/"> <!-- Count will be inserted here --> </span>
和
<span class="disqus-comment-count" data-disqus-identifier="your_disqus_identifier"> <!-- Count will be inserted here --> </span>
旧答案(不要再这样做了)
count.js 脚本在寻找标签类型时相当不灵活(它必须是a
标签),因此您需要使用 API 来完成此操作。
此 API 调用为您指定的任意数量的线程返回一个线程数据数组(您正在寻找“帖子”整数):http: //disqus.com/api/docs/threads/set/
由于 API 的限制,您最好在服务器端运行并缓存计数以提供给客户端。但是,除非您有一个非常繁忙的站点,否则在客户端进行通常是可以的。如果您的应用程序每小时需要超过 1000 个请求,您可以发送电子邮件至 developers@disqus.com。
编辑
这是一个快速示例,说明如何使用 jQuery 执行此操作。这假设您有几个如下所示的空 div:
<div class="my-class" data-disqus-url="http://example.com/some-url-that-matches-disqus_url/"></div>
乐JavaScript:
$(document).ready(function () {
var disqusPublicKey = "YOUR_PUBLIC_KEY";
var disqusShortname = "YOUR_SHORTNAME";
var urlArray = [];
$('.my-class').each(function () {
var url = $(this).attr('data-disqus-url');
urlArray.push('link:' + url);
});
$('#some-button').click(function () {
$.ajax({
type: 'GET',
url: "https://disqus.com/api/3.0/threads/set.jsonp",
data: { api_key: disqusPublicKey, forum : disqusShortname, thread : urlArray }, // URL method
cache: false,
dataType: 'jsonp',
success: function (result) {
for (var i in result.response) {
var countText = " comments";
var count = result.response[i].posts;
if (count == 1)
countText = " comment";
$('div[data-disqus-url="' + result.response[i].link + '"]').html('<h4>' + count + countText + '</h4>');
}
}
});
});
没有 jQuery 解决方案:
var gettingCount = false;
var countCallerCallback = null;
function countCallback(data) // returns comment count or -1 if error
{
var count = -1;
try {
var thread = data.response[0];
count = thread === undefined ? "0" : thread.posts;
}
catch (ex) {
console.log("FAILED TO PARSE COMMENT COUNT");
console.log(ex);
}
// always do this part
var commentCountScript = document.getElementById("CommentCountScript");
document.getElementsByTagName('head')[0].removeChild(commentCountScript);
countCallerCallback(count);
gettingCount = false;
countCallerCallback = null; // if this got reset in the line above this would break something
}
function getCommentCount(callback) {
if(gettingCount) {
return;
}
gettingCount = true;
var script = document.createElement('script');
script.id = "CommentCountScript";
var apiKey = "api_key=MY_COOL_API_KEY";
var forum = "forum=MY_FORUM_SHORT_NAME"
var thread = "thread=" + "link:" + window.location.href;
script.src = 'https://disqus.com/api/3.0/threads/set.jsonp?callback=countCallback&' + apiKey + "&" + forum + "&" + thread;
countCallerCallback = callback;
document.getElementsByTagName('head')[0].appendChild(script);
}
getCommentCount(function(count){alert(count);});