类 CmsSurveyListDirective

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

@Component public class CmsSurveyListDirective extends AbstractTemplateDirective
surveyList 问卷调查列表查询指令

参数列表

parameter list

パラメータリスト

  • userId:发布用户id
  • surveyType:问卷类型,【exam:考试,survey:问卷调查】
  • startStartDate:起始开始日期,【2020-01-01 23:59:59】,【2020-01-01】
  • endStartDate:终止开始日期,【2020-01-01 23:59:59】,【2020-01-01】
  • startEndDate:起始结束日期,【2020-01-01 23:59:59】,【2020-01-01】
  • endEndDate:终止结束日期,【2020-01-01 23:59:59】,【2020-01-01】
  • title:标题
  • disabled:已禁用,默认为false
  • orderField 排序字段,【votes:参与人数,startDate:开始日期,endDate:结束日期,createTime:创建日期】,默认id按orderType排序
  • orderType:排序类型,【asc:正序,desc:倒序】,默认为倒序
  • pageIndex:页码
  • pageSize:每页条数

返回结果

return result

戻り値

使用示例

usage example

使用例

<@cms.surveyList pageSize=10><#list page.list as a>${a.title}<#sep>,</#list></@cms.surveyList>

<script>
 $.getJSON('${site.dynamicPath}api/directive/cms/surveyList?pageSize=10', function(data){
   console.log(data.page.totalCount);
 });
 </script>
 
  • 字段详细资料

  • 构造器详细资料

    • CmsSurveyListDirective

      public CmsSurveyListDirective()
  • 方法详细资料

    • execute

      public void execute(RenderHandler handler) throws IOException, freemarker.template.TemplateException
      参数:
      handler -
      抛出:
      IOException
      freemarker.template.TemplateException