类 CmsCommentListDirective

所有已实现的接口:
Directive, HttpDirective, freemarker.template.TemplateDirectiveModel, freemarker.template.TemplateModel

@Component public class CmsCommentListDirective extends AbstractTemplateDirective
commentList 评论列表查询指令

参数列表

parameter list

パラメータリスト

  • userId:发布评论用户id
  • replyId:被回复评论id
  • contentId:内容id
  • emptyReply:回复id是否为空, replyId为空时有效,默认为false
  • replyUserId:被回复用户id
  • replaceSensitive:替换敏感词, 默认为true
  • advanced:开启高级选项, 默认为false
  • status:高级选项:评论状态,【1:已发布,2:待审核】
  • checkUserId:高级选项:审核用户id
  • disabled:高级选项:评论已删除,【true,false】
  • orderField 排序字段,【replies:回复数,scores:评分,checkDate:审核日期,updateDate:更新日期,createDate:创建日期】,默认置顶id按orderType排序
  • orderType:排序类型,【asc:正序,desc:倒序】,默认为倒序
  • pageIndex:页码
  • pageSize:每页条数

返回结果

return result

戻り値

使用示例

usage example

使用例

<@cms.commentList contentId=1 pageSize=10><#list page.list as a>${a.text}<#sep>,</#list></@cms.commentList>

  <script>
   $.getJSON('${site.dynamicPath}api/directive/cms/commentList?contentId=1&pageSize=10&appToken=接口访问授权Token', function(data){
     console.log(data.page.totalCount);
   });
   </script>