Disqus数不立即刷新

时间:2015-11-30 22:02:23

标签: count synchronization refresh disqus

我2天前注册了Disqus,我把脚本放在我的网站上(不是CMS )。基本上,它正在工作,显示评论,这很容易。

但是,计数系统完全搞砸了。我得到每个帖子的唯一标识符(slug-id):

var disqus_config = function () {
             //this.page.url = '/<?= $datas['slug'].'-'.$datas['id']; ?>/'; // Replace PAGE_URL with your page's canonical URL variable
             this.page.identifier = '<?= $datas['slug'].'-'.$datas['id']; ?>'; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
             };

            (function() { // DON'T EDIT BELOW THIS LINE
                var d = document, s = d.createElement('script');

                s.src = '//my-shortname.disqus.com/embed.js'; // It's the real one, i juste modified it for the post

                s.setAttribute('data-timestamp', +new Date());
                (d.head || d.body).appendChild(s);
            })();

count.js脚本位于</body>标记

之前

计数的代码是:

<a href="/<?= $datas['slug'].'-'.$datas['id']; ?>/#disqus_thread" 
   data-disqus-identifier="<?= $datas['slug'].'-'.$datas['id']; ?>">
</a>

它工作正常,但我需要几分钟/小时才能刷新。看看屏幕截图,我发布了评论,即使我清除缓存等,计数也没有刷新。我必须等待几分钟/小时,它会自动刷新。

Screenshot from my website

为什么呢?如何解决?

0 个答案:

没有答案