我正在使用Servlet
。即使选中单选按钮,request.getParameter()
也始终返回空值。有人可以帮忙吗?
这是我的index.jsp
页面
<html>
<body>
<form action="FileLoader" method="post" enctype="multipart/form-data">
<p>
<label>
<input type="radio" name="se" value="pre-signing" checked = "checked">
Pre-signing </label>
<br>
<label>
<input type="radio" name="se" value="post-signing">
Post-signing </label>
</p>
</body>
</html>
这是我的servlet页面
public void doPost(HttpServletRequest request,HttpServletResponse response)throws ServletException, java.io.IOException {
String radioButton= request.getParameter("se");
System.out.println("radioButton ::"+radioButton);}
即使选中单选按钮,它也会返回空值。