ajax上传图片

                                                   ajax上传图片

springmvc上传示例:

服务器端代码:

@RequestMapping(value="/addbrands",produces = "application/json")
	@ResponseBody
	public MyAjaxResult addbrand(MultipartFile myfile,String brand,String type) {
		System.out.println(myfile);
		System.out.println(brand);
		System.out.println(type);
		return MyAjaxResult.success("上传成功");
	}

前端代码:

                        var image_file=document.getElementById("changeImg1");//文件
      	    	        var fenlei=document.getElementById("type").value;//附加内容
                        var pinpai=document.getElementById("brand").value;//附加内容
			var formData = new FormData();//封装数据
			formData.append('myfile',image_file.files[0]);//添加文件
			formData.append("type",fenlei);//添加内容
			formData.append("brand",pinpai);//添加内容
			//发送请求
			$.ajax({
			    url: '${path}/type/addbrands',//请求路径
			    type: 'POST',
			    cache: false,
			    data: formData,//数据
			    processData: false,
			    contentType: false
			}).done(function(res) { //回调函数
				console.log(res)
			}).fail(function(res) { 
				console.log(res)
			});

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值