我有一个场景,我需要调用 Action 类的方法。下面是代码。
<s:if test="#session['EXECUTOR'] != null">
<tr>
<td width="80%">
Test:
<!-- <s:property value="#moveETHAction_fetchExecutorData(#session['EXECUTOR'])" /> -->
<s:push value="#moveETHAction_fetchExecutorData(#session['EXECUTOR'])">
<s:property value="top">
</s:push>
</td>
</tr>
</s:if>
但是它不起作用,抛出一些 Jasper 异常-“根据 TLD,标签 s:property 必须为空,但不是”
我如何调用该方法并返回String
数据?