我在Backbone上有一个网站。 当我尝试执行Disqus代码时,我得到了
未捕获的TypeError:无法读取null
的属性'appendChild'
我该如何解决?为什么会这样?
var disqus_shortname = 'mysite';
/* * * 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);
})();
控制台:
undefined
embed.js:1 Unsafe attempt to redefine existing module: BASE
embed.js:1 Unsafe attempt to redefine existing module: apps
embed.js:1 Unsafe attempt to redefine existing module: get
...
embed.js:1 Unsafe attempt to redefine existing module: configAdapter
embed.js:1 Unsafe attempt to redefine existing module: removeDisqusLink
embed.js:1 Unsafe attempt to redefine existing module: loadEmbed
embed.js:1 Unsafe attempt to redefine existing module: reset
embed.js:1 Uncaught TypeError: Cannot read property 'appendChild' of null
答案 0 :(得分:19)
对于刚刚在2015年发现这一点的人,除了在" head"或"身体"如果您的页面中没有以下div,则会出现此错误:
<video>
将div放在您想要实际出现的disqus线程的位置。
答案 1 :(得分:2)
由于某种原因,您的文档似乎缺少head
和body
。
试试这个:
(function() {
var dsq = document.createElement('script');
var head = document.getElementsByTagName('head')[0];
var body = document.getElementsByTagName('body')[0];
dsq.type = 'text/javascript';
dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
console.log('head', head);
console.log('body', body);
(head || body).appendChild(dsq);
}());
然后查看控制台。
答案 2 :(得分:0)
我已经解决了这样的问题:
// Only if disqus_thread id is defined load the embed script
if (document.getElementById('disqus_thread')) {
var your_sub_domain = ''; // Here goes your subdomain
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + your_sub_domain + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
}
向@boutell和@June寻求线索。