javascript – Disqus为动态页面加载相同的注释

前端之家收集整理的这篇文章主要介绍了javascript – Disqus为动态页面加载相同的注释前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个动态页面,可以加载不同的想法.我正在使用disqus作为评论,但是disqus继续为每个想法加载相同的评论.

这是网站. http://tech-in.org/submitted_ideas/index.php.

这是我的代码

<script type="text/javascript">
    /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
     if( typeof DISQUS != 'undefined' ) { 
      DISQUS.reset({ 
        reload: true,config: function () { 
           this.page.identifier = '<?PHP echo $title; ?>'; 
           this.page.url = 'http://tech-in.org/submitted_ideas/idea.PHP?id=<?PHP echo $idea_id; ?>'; 
         } 
       }); 
    } 
    var disqus_shortname = 'techinorg'; // required: replace example with your forum shortname
    var disqus_identifier = '<?PHP echo $title; ?>';
    var disqus_url = 'http://tech-in.org/submitted_ideas/idea.PHP?id=<?PHP echo $idea_id; ?>';
    var disqus_title = document.getElementById('disqus_post_title').innerHTML;
    var disqus_message = document.getElementById('disqus_post_message').innerHTML;


    /* * * DON'T EDIT BELOW THIS LINE * * */
    (function() {
        var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
        dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
    })();
</script>

请帮助解决导致错误的原因以及我该怎么做才能解决

解决方法

Disqus根据您指定的disqus_identifier决定加载哪些注释.加载不同的“想法”时,请确保提供与该想法相对应的唯一disqus_identifier. (目前还不清楚PHP标题中的$title代表什么,这是当前分配给disqus_identifier的内容.)
原文链接:https://www.f2er.com/js/159156.html

猜你在找的JavaScript相关文章