1
ng-view
에로드 된 HTML 파일에 disqus 스크립트를 포함 시켰지만 아무것도 표시하지 않습니다. 그러나 내가 스크립트를 ng-view
밖으로 옮기면 잘 동작합니다. ng-view
안에 disqus 주석을로드 할 수있는 방법이 있습니까? AngularJs :보기에서로드 disqus 코멘트
<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>
이 도와 주셔서 너무 감사합니다 여기에
은 HTML 파일입니다.
코드 샘플 및 아키텍처 – TheBlackBenzKid
당신이 봤어하시기 바랍니다 [각도-Disqus에]를 연결합니다 (https://github.com/kirstein/angular -disqus /) 또는 유사한 ng-directive? – Nils
방금 시도했지만 작동하지 않습니다. 같은 문제. –