我正在使用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);}
即使选中了单选按钮,它也会返回一个空值。