MOxFIVE / M-Hexo-Blog

Building my Blog by Hexo & theme Yilia & Yelee.
http://MOxFIVE.xyz/
7 stars 4 forks source link

多说在 page 中评论重复 #21

Closed MOxFIVE closed 8 years ago

MOxFIVE commented 8 years ago

post 文章多说评论互不干扰,但在 page 页面中评论都一样。

MOxFIVE commented 8 years ago

article.ejs

<% if (!index && theme.duoshuo && post.comments){ %>
<%- partial('post/duoshuo', {
    key: post.slug, 
    title: post.title,
    url: config.url+url_for(post.path)
  }) %>
<% } %>

key: post.slug 改为 key: post.path,这样会按页面地址生成唯一的 key, 避免重复。