struts 1.1 tile里面的html:form

时间:2013-12-01 18:21:47

标签: struts

你好我有一个看起来像这样的表格:

<form target ="_blank" id="downloadFrm" name="downloadFrm" action="<tiles:getAsString name="downloadFileName" ignore="true"/>" method="post">

但是我希望这个表单是一个html:form,类似于:

<html:form target ="_blank" styleId="downloadFrm" action="<tiles:getAsString name="downloadFileName" ignore="true"/>" >

但我不能在html:form中包含“!tiles.getAsString”。 我得到了相同的符号预期。

可以修复吗?

1 个答案:

答案 0 :(得分:0)

请尝试按如下方式将操作分配给变量,并在html:form

中使用它
<c:set var="actionPath"><tiles:getAsString name="downloadFileName" ignore="true"/></c:set> 

<html:form target ="_blank" styleId="downloadFrm" action="${actionPath}" />