我使用带有后端 java 的 Jquery 文件上传。我得到
if(ServletFileUpload.isMultipartContent(request) is true.
但
List<FileItem> items = uploadHandler.parseRequest(request);
返回空。我之前没有访问过请求参数。
我用谷歌搜索,发现从 web.xml 更改为/*
to /*.action
将解决问题。但是通过这种更改,struts2 项目没有运行。