我正在为我的应用程序使用 Play 1.2.4 框架。
我正在使用以下方法在 .html 文件中设置隐藏变量:
<input type="hidden" name="test" value="test">
为了检索控制器中隐藏变量的值,我使用了这个:
String str = request.params.get("test");
但不幸的是,String str 的值即将到来,null
这意味着它不起作用。
请让我知道如何检索控制器中的隐藏变量值。
编辑
<center>
<table>
<tr style="height: 100px">
<td><h1>
<b>Title</b>
</h1></td>
</tr>
<tr>
<td>#{a @Application.userList()} Click Me#{/a}</td>
<input type="hidden" name="test" value="test">
</tr>
</table>