gpt4 book ai didi

java - spring mvc 4 + ajax 中无法使用其他表单字段上传图像

转载 作者:行者123 更新时间:2023-12-02 02:01:48 26 4
gpt4 key购买 nike

我想创建表单,用于在用 java + spring mvc 4 + hibernate 4 + jquery ajax 和 tomcat 9 编写的 Web 应用程序中添加用户和图像。

这是我的表格:

        <form:form id="id1" name="addUser" class="form-horizontal form-material" data-toggle="validator"
method="post"
action="javascript:void(0)" enctype="multipart/form-data">
<div class="form-group">
<div class="col-md-12 m-b-20">
<input name="name" type="text" placeholder="${msg_name}" class="form-control"
data-required-error="${msg_requiredInput}"
required>
</div>
<div class="col-md-12 m-b-20">
<input name="mobile" type="text" class="form-control" placeholder="${msg_mobile}">
</div>
<div class="col-md-12 m-b-20">
<input name="phone" type="text" class="form-control" placeholder="${msg_phone}">
</div>
<div class="col-md-12 m-b-20">
<input name="email" type="email" class="form-control" placeholder="${msg_email}">
</div>
<div class="col-md-12 m-b-20">
<div class="fileupload btn btn-danger btn-rounded waves-effect waves-light">
<span><i class="ion-upload m-l-5"></i>
${msg_sendPicture}
</span>
<input name="file" id="file" type="file" class="upload">
</div>
</div>
</div>
<div class="modal-footer">
<button id="addUerSubmit" type="submit" class="btn btn-info waves-effect">
${msg_save}
</button>
<button type="button" class="btn btn-default waves-effect"
data-dismiss="modal">
${msg_cancel}
</button>
</div>
</form:form>

我的ajax请求是:

<script type="text/javascript">
$(function () {
$('#addUserSubmit').click(function (e) {
if ($(this).hasClass('disabled'))
return;
$.ajax({
url: 'addUser',
method: 'POST',
dataType: 'json',
async: false,
cache: false,
processData: false,
data: $('form[name=addUser]').serialize(),
success: function (res) {
showAlert(res.type, res.message);
}
})
});
});
</script>

以下代码是我的 Controller :

@ResponseBody
@PostMapping("/addUser")
public void addUser(@RequestParam("name") String name,
@RequestParam("mobile") String mobile,
@RequestParam("phone") String phone,
@RequestParam("email") String email,
@RequestParam("file") MultipartFile file) {
ServletContext servletContext = request.getServletContext();
User user = new User(name, mobile, phone, email);
userService.addUser(user);

try {
if (file != null)
FileCopyUtils.copy(file.getBytes()
, new File(servletContext.getRealPath("/files/users/") + user.getId()));
else
FileCopyUtils.copy(new File(servletContext.getRealPath("/files/users/user.png"))
, new File(servletContext.getRealPath("/files/users/") + user.getId()));
} catch (IOException e) {
e.printStack();

}

}

但是当我运行这个程序时,服务器返回错误 500 并且服务器显示以下错误:

22-Jul-2018 18:12:36.506 SEVERE [http-nio-8080-exec-8] org.apache.catalina.core.StandardWrapperValve.invoke Servlet.service() for servlet [spring-mvc] in context with path [/spring] threw exception [Request processing failed; nested exception is org.springframework.web.multipart.MultipartException: Current request is not a multipart request] with root cause
org.springframework.web.multipart.MultipartException: Current request is not a multipart request
at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:190)
at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:109)
at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121)
at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:158)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:128)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:97)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:967)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:901)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:660)
at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)

.........

最佳答案

我认为如果您使用自定义 JavaScript 函数而不是 HTML 的默认行为 form您必须配置 AJAX 调用,以便它将数据发送为 multipart/form-data即使您在 <form> 处配置了此设置您的 AJAX 调用不会使用此配置。请查看 Stackoverflow 上的以下答案,了解如何将数据包装为 FromData对于 AJAX 调用:Sending multipart/formdata with jQuery.ajax

关于java - spring mvc 4 + ajax 中无法使用其他表单字段上传图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51465793/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com