jpress-perfree-simple
jpress-perfree-simple copied to clipboard
一款简约响应式Jpress博客主题模板
Results
2
jpress-perfree-simple issues
Sort by
recently updated
recently updated
newest added
如题,当开启评论需管理员审核功能后,在文章详情页面评论成功后;在回调里面并没有考虑这种情况 ` if(result.user != null){ avatarUrl = result.user.avatar; author = result.comment.author; }else { avatarUrl = "/templates/jpress-perfree-simple/static/img/avatar.png"; author = "匿名用户"; }` 在上述代码**author = result.comment.author;**中会报undefined错误; 建议: - 优化后台返回,即使还未审核通过,也应该让用户知晓评论成功 - 修改后台返回**comment**,并在页面友好展示(如显示为待审核) - 修改页面提示告知用户,如在上述代码之前添加:...