Disqus this.callbacks.onNewComment无效

时间:2017-07-13 15:15:49

标签: javascript disqus

我无法让Disqus this.callbacks.onNewComment工作。可能有什么不对?我发布了一条新评论,试图提醒(嘿嘿!')。 Source

<script>
var disqus_config = function () {
this.page.url = PAGE_URL;  
this.page.identifier = PAGE_IDENTIFIER;
    this.callbacks.onNewComment = [function(comment) {
          alert(comment.id);
          alert(comment.text);
          alert('hey!');

    }];
};

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

    s.src = 'https://example.disqus.com/embed.js';

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

1 个答案:

答案 0 :(得分:1)

  1. PAGE_URLPAGE_IDENTIFIER需要特定于您的网站
  2. 此回调用于通过此浏览器窗口检测新帖子。不是来自其他用户(甚至是您自己的用户在另一个浏览器窗口中)的新帖子
  3. 第二个人扔了我,因为我认为这表明新帖已经到了