beetl在自定义的btl模版里使用for循环

转载自:http://www.513school.com/bbs/admin/1/111448.html


现项目使用beetl模板生成代码,用到了for循环

网上查找到资料是这样的

由于我是使用xx.btl文件生成的,所以以上方式并不适用

原来要使用以前类似于jsp写java代码的方式,使用<%  %> 将代码包括起来

一下是我的例子

<% for(item in columnList ){ %>

         <%if(item.type != '' && item.type == 'select'){%>

         {

            label: '${item.name}',

            prop: '${item.code}',

            type: TableColumnOrFormTypeEnum.SELECT,

            dicCode: '${item.enumtype}',

            placeholder: '请选择${item.name}',

          },

         <%}else if(item.type != '' && item.type == 'date'){%>

         {

            label: '${item.name}',

            prop: '${item.code}',

            type: TableColumnOrFormTypeEnum.DATE,

            placeholder: '请选择${item.name}',

          },

         <%}else if(item.type != '' && item.type == 'moneyinput'){%>

         {

            label: '${item.name}',

            prop: '${item.code}',

            type: TableColumnOrFormTypeEnum.MONEYINPUT,

          },

         <%}else if(item.type != '' && item.type == 'textarea'){%>

         {

            label: '${item.name}',

            prop: '${item.code}',

            type: TableColumnOrFormTypeEnum.TEXTAREA,

            placeholder: '请输入${item.name}',

            maxlength: 200,

            expand: ${item.expand},

          },

         <%}else{%>

          {

            label: '${item.name}',

            prop: '${item.code}',

            type: TableColumnOrFormTypeEnum.INPUT,

          },

            <%}%>

        <%}%>

特此记录下来,以供大家学习分享


转载自:http://www.513school.com/bbs/admin/1/111448.html

你可能感兴趣的:(beetl在自定义的btl模版里使用for循环)