使用自定义标记lib动态生成html表单是一种好习惯吗?

时间:2015-12-05 12:15:18

标签: model-view-controller custom-tags

我正在使用MVC架构,我使用了自己的自定义taglib和JSTL,它们将动态生成表单gridList。这是一个适当的做法。它会对性能产生什么影响?

<c:forEach items="${uiFieldList}" var="u" >
 <div class="span5"> 
    <div class="control-group">
    <label class="control-label" ><spring:message code="${u.fieldLabel}" /><c:if test="${u.mandatory =='Y'}"><strong style="color:red;">*</strong></c:if></label>
    <div class="controls">
      <div class="input-prepend">
      <iana:text name="${u.name}" id="${u.id}" value="${u.value}" ></iana:text>
    </div>

      </div>
  </div>    
 </div>

有什么建议吗?

0 个答案:

没有答案