AngularJs:在ng-view中加载disqus注释

时间:2016-12-05 07:04:52

标签: angularjs disqus ng-view

我已将disqus脚本包含在我的html文件中,该文件已加载到ng-view中,但它没有显示任何内容。但是,当我将脚本移出ng-view时,它可以正常工作。 有没有办法在ng-view内加载disqus评论?

这是html文件:

<div id="disqus_thread"></div>
<script>

var disqus_config = function () {
this.page.url = 'http://example-com';  // Replace PAGE_URL with your   page's canonical URL variable
this.page.identifier = 'http://example-com'; // 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 = '//example-com.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?    ref_noscript">comments powered by Disqus.</a></noscript>

非常感谢你的帮助。

1 个答案:

答案 0 :(得分:1)

我终于找到一个救我的Disqus Directive

谢谢大家