Dee*_*mar 12 java freemarker spring-mvc
我在FTL文件中创建了一个DIV,DIV包含表单现在说我有另一个FTL文件,我想在第二个FTL文件中使用第一个FTL的div这是可能的
<div id="filterReportParameters" style="display:none">
<form method="POST" action="${rc.getContextPath()}/leave/generateEmpLeaveReport.json" target="_blank">
<table border="0px" class="gtsjq-master-table">
<tr>
<td>From</td>
<input type="hidden" name="empId" id="empId"/>
<td>
<input type="text" id="fromDate" name="fromDate" class="text ui-widget-content ui-corner-all" style="height:20px;width:145px;"/>
</td>
<td>Order By</td>
<td>
<select name="orderBy" id="orderBy">
<option value="0">- - - - - - - Select- - - - - - - -</option>
<option value="1">Date</option>
<option value="2">Leave Type</option>
<option value="3">Transaction Type</option>
</select>
</td>
</tr>
<tr>
<td>To</td>
<td><input type="text" id="toDate" name="toDate" class="text ui-widget-content ui-corner-all" style="height:20px;width:145px;"/>
</tr>
<tr>
<td>Leave Type</td>
<td>
<select name="leaveType" id="leaveType">
<option value="0">- - - - - - - Select- - - - - - - -</option>
<#list leaveType as type>
<option value="${type.id}">${type.leaveType.description}</option>
</#list>
</select>
</td>
</tr>
<tr>
<td>Leave Transaction</td>
<td>
<select name="transactionType" id="transactionType">
<option value="0">- - - - - - - Select- - - - - - - -</option>
<#list leaveTransactionType as leaveTransaction>
<option value="${leaveTransaction.id}">${leaveTransaction.description}</option>
</#list>
</select>
</td>
</tr>
</table>
</form>
Run Code Online (Sandbox Code Playgroud)
我如何在另一个FTL文件中使用此div
A L*_*Lee 13
如果您只想在另一个freemarker模板中包含一个freemarker模板的div,则可以使用宏来提取公共div .例如,
in macros.ftl:
<#macro filterReportDiv>
<div id="filterReportParameters" style="display:none">
<form ...>
..
</form>
</div>
</#macro>
Run Code Online (Sandbox Code Playgroud)
然后在两个freemarker模板中,您可以通过以下方式导入macros.ftl和调用宏:
<#import "/path/to/macros.ftl" as m>
<@m.filterReportDiv />
Run Code Online (Sandbox Code Playgroud)
宏是FreeMarker中的一个很棒的功能,也可以参数化 - 它们可以真正减少模板中的代码重复.
no.*_*ing 11
听起来你正在寻找<#include>指令 - 包含的文件将由Freemarker处理,就像它是包含文件的一部分一样.
<#include "deepak.ftl">如果两个FTL文件都在同一目录中,它们将起作用.如果不是,您可以使用相对路径.
| 归档时间: |
|
| 查看次数: |
14892 次 |
| 最近记录: |