前言
最近不太忙,一直想弄一个blog,最好发现了hexo这个技术,所以就搞了起来,在添加评论系统这方面,原来大部分人都用的多说,
然而不幸的是多说在今年六月份关闭了,于是我在网上开始查询新的评论系统,主要有以下几个:
1.disqus国外很出名的评论系统,但是google被墙导致它的连接并不稳定,国内使用并不理想.
2.多说不能多说了,已经关闭使用
3.畅言搜狐的评论系统,目前来说很不错,然而需要备案,关键是我没有备案 out
4.友言据说很久不更新了,可能过一阵子也会挺不住,但是目前来说是不错的选择了
5.网易云跟帖据说也已经挂了,我是没找到官网
综上所述,只能选择友言开始锤了.
正文
-----注册友言-----
打开友言,登录注册,进入后台
-----添加友言属性-----
打开hexo根目录,打开..\themes\jacman\_config.yml
文件
#### Comment
duoshuo_shortname: ## e.g. wuchong your duoshuo short name.
disqus_shortname: ## e.g. wuchong your disqus short name.
gentie_key: ## your 163 gentie key, see https://gentie.163.com/
changyan_appid: ## changyan app id, see http://changyan.kuaizhan.com/
changyan_appkey: ## changyan app key, see http://changyan.kuaizhan.com/
uyan: ##填入你友言的id
-----添加ejs代码-----
打开hexo根目录,打开..\themes\jacman\layout\_partial\post\comment.ejs
文件
将上述代码块复制到下图的位置
<% if (theme.uyan && page.comments){ %>
##在此添将上方的 代码段复制到当前位置
<% } %>
<% if (theme.uyan && page.comments){ %>
##在此添将上方的 代码段复制到当前位置
<% } %>
<% if (theme.duoshuo_shortname && page.comments){ %>
<% } %>
<% if( (config.disqus_shortname || theme.disqus_shortname) && page.comments) { %>
Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a>
<% } %>
<% if (theme.gentie_key && page.comments){ %>
<% } %>
<% if (theme.changyan_appid && page.comments){ %>
<% } %>
结尾
保存配置文件,运行hexo d -g
生成并上传新的文件,登录网页观看评论系统是否成功显示.
如此表示成功添加评论系统!