在我的JSP中,我执行以下操作:
<!-- Bank manager's permissions -->
<!--more stuff goes here -->
<fieldset>
<legend>To open a new account</legend>
<form action="blablabla">
<input type="hidden" name="hdField" value="myValue" /> // note I pass a "myValue" as string
<a href="employeeTransaction1">Press here to continue</a>
</form>
</fieldset>
在我的Servlet中,我抓住隐藏的输入:
@WebServlet("/employeeTransaction1")
public class Employee1 extends HttpServlet {
private static final long serialVersionUID = 1L;
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
String getHiddenValue=request.getParameter("hdField");
System.out.println("Hidden field Value :"+getHiddenValue);
// forwards to the page employeeOpenNewAccount.jsp
request.getRequestDispatcher("/WEB-INF/results/employeeOpenNewAccount.jsp").forward(request, response);
}
}
System.out.println
在控制台
null
为什么我通过的null
不是实际值?
此致
修改
更改为:
<fieldset>
<legend>To open a new account</legend>
<form action="/employeeTransaction1" method="GET">
<input type="hidden" name="hdField" value="myValue"/>
<a href="employeeTransaction1">Press here to continue</a>
</form>
</fieldset>
控制台上仍然显示null
。
答案 0 :(得分:4)
您要做的是将表单发送到服务器。但是,事实上,你不这样做。您只需发出GET请求(当用户点击您的链接时:<a href="employeeTransaction1">Press here to continue</a>
)
如果您要发送表单,请确保正确设置表单标记的属性并向表单添加提交按钮:
<form action="/employeeTransaction1" method="GET">
...
<input type="submit" value="Submit" />
...
</form>
根据您首选的发送表单的方式,您可以将method="GET"
参数更改为method="POST"
,并确保在servlet中使用doPost()
方法处理表单
或者,如果您的目的不是将from发送到服务器而只是传递隐藏输入的值,则应将其值添加为GET请求中编码的参数。类似的东西:
/employeeTransaction1?hdField=myValue
要实现这一点,您需要一些客户端处理,即当用户单击链接时,应将隐藏的输入添加到get中,然后发出请求。
答案 1 :(得分:2)
使用 href 标记不会提交您的表单,即它不会将表单中定义的参数传递给请求。您应该使用输入类型=“提交”或按钮标记。还要确保表单操作与@WebServlet定义匹配。
<fieldset>
<legend>To open a new account</legend>
<form action="/employeeTransaction1">
<input type="hidden" name="hdField" value="myValue" /> // note I pass a "myValue" as string
<input type="submit" value="Submit" />
</form>
</fieldset>