博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ajax发送formdata数据,SpringMVC后台处理
阅读量:6207 次
发布时间:2019-06-21

本文共 744 字,大约阅读时间需要 2 分钟。

hot3.png

前端js:

var submit_data = new FormData();var name = $("#name").val();let file = $("#file")[0].file[0];submit_data.append("file", file);submit_data.append("name", name);$.ajax({	url: "http://localhost:8080/caochanglu/getSearch/getRule",	type: "POST",	data: submit_data,	async: false,	dataType: "json",	cache: false,	processData: false,	contentType: false,	success: function(data) {		console.log(data);	},	error: function(err) {		console.log(err);	}});

后台spring

@ResponseBody@RequestMapping(value = "getRule", methon = {RequestMethod.GET, RequestMethod.POST})public String getRule(HttpServletRequest request, @RequestParam("file") MultipartFile file){	String name = request.getParameter("name");}

 

转载于:https://my.oschina.net/duanvincent/blog/1936834

你可能感兴趣的文章
Linux运维系统工程师系列---04
查看>>
mkdir命令使用范例
查看>>
Expect 教程中文版
查看>>
mysql 1449 : The user specified as a definer ('usertest'@'%') does not exist 解决方法 (grant 授予权限)...
查看>>
Windows下安装Python模块时环境配置
查看>>
FiddlerScript-常用总结
查看>>
如何通过Git GUI将自己本地的项目上传至Github
查看>>
使用deploy命令上传jar到私有仓库
查看>>
apk之间数据共享的方式
查看>>
python 版本分布式锁
查看>>
限定虚拟机可用的CPU利用率
查看>>
Iptables-Fail2ban处理bind 非法***
查看>>
回文数算法
查看>>
Python爬虫框架Scrapy学习笔记原创
查看>>
Java逆向基础之AspectJ的获取成员变量的值
查看>>
我的第一程序语言python
查看>>
DHCP服务开启了,为什么老是网络冲突
查看>>
python 处理python编码的基本过程
查看>>
easyui validatebox 验证类型
查看>>
跳出多重循环 JS
查看>>