类 CmsContentFileListDirective

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

@Component public class CmsContentFileListDirective extends AbstractTemplateDirective
categoryFileList 内容附件列表查询指令

参数列表

parameter list

パラメータリスト

  • fileTypes:文件类型,【image:图片,video:视频,audio:音频,other:其他】
  • image:是否图片,当fileTypes为空时有效,【true,false】
  • contentId:内容id
  • userId:用户id
  • absoluteURL:url处理为绝对路径 默认为true
  • orderField:排序字段,【size:文件大小,clicks:点击数】,默认排序正序、id正序
  • orderType:排序类型,【asc:正序,desc:倒序】,默认为倒序
  • pageIndex:页码
  • pageSize:每页条数

返回结果

return result

戻り値

使用示例

usage example

使用例

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

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

  • 构造器详细资料

    • CmsContentFileListDirective

      public CmsContentFileListDirective()
  • 方法详细资料

    • execute

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