Ich habe eine Website auf Backbone. Wenn ich versuche, Disqus Code auszuführen i"Kann nicht lesen Eigenschaft 'appendChild' von null" mit Disqus auf Backbone Website
Uncaught TypeError: Cannot read property 'appendChild' of null
bekommen Wie kann ich es beheben? Warum passiert dies?
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);
})();
Konsole:
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
scheint, dass Sie in Ihrem HTML weder ** head ** noch ** body ** -Tag definiert haben. – FatalError