gpt4 book ai didi

Disqus 获取评论数

转载 作者:行者123 更新时间:2023-12-02 02:30:23 36 4
gpt4 key购买 nike

我知道这似乎是一个简单的问题,但我发现没有简单的方法可以获取 ajax 页面中给定 disqus 标识符的评论计数。

我查看了他们的API,这是一个选项,但我们正在为最终用户构建一个基于ajax cms的网站,强制每个用户都这样做似乎有点乏味必须创建自己的 disqus 应用程序 API 并填写公钥和 key 才能获得评论计数。此外,加载一个单独的远程 JS,返回整个 JSON 对象,只是为了获取当前页面评论数,这似乎有些过分了。

有一个count.js脚本here ,但是没有关于如何动态更新ajax页面的计数的信息。好吧……经过大量搜索,我发现了一些未记录的方法DISQUSWIDGETS.getCount()。但是,在对每个标识符进行一次调用后,此方法将停止工作。此外,该方法还需要加载外部JS才能获取评论数...

似乎很奇怪#comments 数量无法更容易提取。毕竟评论量是在页面上显示评论后才可以看到的,但是我们当然不能用JS访问那个iframe。任何启示表示赞赏...

最佳答案

 This is the html file which will help you to count the number of comments in a particular node in for any site which has disqus comment.

<!DOCTYPE html>
<html>
<head>
<title>Disqus Comment Counts Example</title>
<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
var disqusPublicKey = "?";

var disqusShortname = "?"; // Replace with your own shortname

var urlArray = [];

$('.count-comments').each(function () {
var url = $(this).attr('data-disqus-url');
urlArray.push('link:' + url);
});



$('#get-counts-button').click(function () {
$.ajax({
type: 'GET',
url: "https://disqus.com/api/3.0/threads/set.jsonp",
data: { api_key: disqusPublicKey, forum : disqusShortname, thread : urlArray },
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>');

}
}
});
});


});
</script>
</head>
<body>
<h1>Comment Counts Example</h1>
<div>
<a href="#">
<h2>Fullscreen BEAM: The first YouTube app for Google Glass comes with public or private sharing</h2>
<div class="count-comments" data-disqus- url="http://www.dev.indiawaterportal.org/questions/can-using-ro-water-result-stomach-problems"></div>
</a>
</div>

<button type="button" id="get-counts-button">Get Comment Counts</button>
</body>

关于Disqus 获取评论数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20234899/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com