https://github.com/SukkaW/DisqusJS
使用 Disqus API 渲染评论列表,搭配 Disqus API 的反代可以实现在网络审查地区加载 Disqus 评论列表;支持自动检测访客的 Disqus 可用性自动选择加载原生 DISQUS (评论完整模式)和 DisqusJS 提供的评论基础模式。
最早在 https://imququ.com 上看到了屈哥用 Disqus API 开发的「评论基础模式」供无法访问 Disqus 的访客查看评论和发表评论。同样在使用 Disqus 的我打算造一个类似的东西,至少能让不能访问 Disqus 的访客可以查看已有评论列表,于是就有了 DisqusJS。
下载 经过编译和压缩的 DisqusJS 相关文件,在需要安装 DisqusJS 的页面的 </head>
之前引入 DisqusJS 的 css、在 </body>
之前引入 Disqus 的 JS:
<link rel="stylesheet" href="disqusjs.css">
<script src="disqus.js"></script>
也可以使用 CDN 加载上述所需文件:
jsDelivr
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/disqusjs@0.2.0/dist/disqusjs.css">
<script src="https://cdn.jsdelivr.net/npm/disqusjs@0.2.0/dist/disqus.js"></script>
Unpkg
<link rel="stylesheet" href="https://unpkg.com/disqusjs@0.2.0/dist/disqusjs.css">
<script src="https://unpkg.com/disqusjs@0.2.0/dist/disqus.js"></script>
在需要显示评论的地方插入下述代码:
<div id="disqus_thread"></div>
<script>
var disqusjs = [];
disqusjs.config = {
shortname: '', // Your Disqus Shortname
identifier: '', // Your thread identifier
url: '', // Your page URL
api: '', // API Endpoint
apikey: '', // Your Disqus Application API Key
admin: '', // Disqus Moderator's Username
adminLabel: '' // Disqus Moderator Badge Text
};
</script>
Disqus API Application 的配置方法和 DisqusJS 配置参数说明请 阅读 DIsqusJS 的 README
为了便于使用静态博客、没有自己的 VPS 的个人博主使用,我搭建了一个 Disqus API 的反代,直接填在 api
中即可:https://disqus.skk.moe/disqus/
DisqusJS © Sukka, Released under the GPL-3.0 License.
Authored and maintained by Sukka with help from contributors (list).
Personal Website · Blog · GitHub @SukkaW · Telegram Channel @SukkaChannel
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.