在localhost上使用Disqus?

时间:2014-07-31 18:52:45

标签: javascript localhost disqus

Disqus不会出现在localhost上。我尝试了this solution,但我相信这种方法已被弃用,因为它已不再适用。我在网上看到的所有答案都是这样,但它们都已经存在了几年。如果有人知道如何在没有活动服务器或域的本地主机上测试它,我真的很感激。 这是我的代码(Disqus在他们的网站上给你的东西):

<div id="disqus_thread"></div>
<script type="text/javascript">
    /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
    var disqus_shortname = 'josemagana'; // required: replace example with your forum shortname

    /* * * DON'T EDIT BELOW THIS LINE * * */
    (function() {
        var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
        dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
    })();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a>
</noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>

编辑:如果您想知道,唯一显示的是“由Disqus提供评论”作为链接。

1 个答案:

答案 0 :(得分:2)

这是一个很长的镜头,但你可以尝试

    dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';

而不是

    dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';

确保在运行服务器时测试它,而不是打开普通的html文件。