AngularJs: 在 ng-view 中加载 disqus 评论
AngularJs: Load disqus comments in 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>
非常感谢您的帮助。
我终于找到一个Disqus Directive拯救我
谢谢大家
我已将 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>
非常感谢您的帮助。
我终于找到一个Disqus Directive拯救我
谢谢大家