0

我正在为我的应用程序使用 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>        

4

1 回答 1

1

你应该把你的<input>标签用标签括起来<form><a>然后,使用您的标签发出表单请求。代码如下所示:

<center>
<table>
    <tr style="height: 100px">
        <td><h1>
                <b>Title</b>
            </h1></td>
    </tr>
    <tr>
        <td>
            <form action="@{Application.userList()}" id="myform" method="get">
                <a onclick="document.getElementById('myform').submit();">Click Me</a>
                <input type="hidden" name="test" value="test">
            </form>
        </td>
    </tr>
</table>    
于 2013-07-27T01:49:58.760 回答