ajax请求参数的格式问题(x-www-form-urlencoded、form-data、raw)

ajax请求数据的参数格式有有所不同,提交的方式等也有所差别
一、x-www-form-urlencoded是最普遍的格式,直接传

$.ajax({
	type: "GET",
	url: Apiurl,
	data: {
		scode: scode
	},
	success: function(res) {
	   console.log(res);
    }
    error: function(data) {
	    console.log(res.msg);
	}
});

二、form-data对象格式要求先封装好参数再传

var formData = new FormData();
formData.append('dec_amount', applynum); //通过append方法添加数据,封装参数,参数名
formData.append('origin_province', origin_province);
formData.append('origin_city', origin_city);
formData.append('origin_district', origin_district);
$.ajax({
 			type: "POST",
 			url: Apiurl,
 			async: true,
 			data: formData,
 			cache: false, //上传文件不需要缓存
 			processData: false, // 告诉jQuery不要去处理发送的数据
 			contentType: false, // 告诉jQuery不要去设置Content-Type请求头
 			success: function(res) {
 				console.log(res);
 				if (res.status == 200) {
 					console.log(res);					  
 				} else {
 					console.log(res);
 				}
 			},
 			error: function(data) {
 				console.log(res);
 			}
});
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值