这两天在为自己的博客http://vrails.com的文章页面中添加评论模块,选用了多说
博客使用了 turbolinks,而多说的评论模块在页面中时有时无,这明显是本人对 turbolinks 理解不够好的原因
以下是多说的代码:
(function() {
var ds = document.createElement('script');
ds.type = 'text/javascript';ds.async = true;
ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js';
ds.charset = 'UTF-8';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ds);
})();
请问我应该如何修改代码,才能让评论模块保持显示?