好友
阅读权限10
听众
最后登录1970-1-1
|
繁星微微
发表于 2020-12-24 00:56
本帖最后由 繁星微微 于 2020-12-24 22:52 编辑
页面代码:<form action="${pageContext.request.contextPath}/user" method="post" enctype="multipart/form-data">
<input type="hidden" name="action" value="updateUserInfo">
<input type="hidden" name="uid" value="${user.uid}">页面里面含有action数据,如图.
服务器代码:
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request,response);
}protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
System.out.println("转到doGet方法中");
String uid = request.getParameter("uid");
System.out.println(uid);//数据也为null
//判断action的值
String action = request.getParameter("action");
System.out.println(action);//打印结果为null,导致后面空指针异常求教个位大佬有什么排查方法
各位大佬是否有解决思路:
F12查看页面请求体数据如下: |
-
浏览器请求体数据
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|