转自https://segmentfault.com/a/1190000006871099
contentType
是指http/https发送信息至服务器时的内容编码类型,contentType
用于表明发送数据流的类型,服务器根据编码类型使用特定的解析方式,获取数据流中的数据。内容编码类型的作用,有点像本地文件的后缀名。
常见的contentType
一、x-www-form-urlencoded
这是Jquery/Zepto Ajax默认的提交类型。最简例子为:
1 let userInfo = { 2 name: ‘CntChen‘, 3 info: ‘Front-End‘, 4 } 5 6 $.ajax({ 7 url: ‘https://github.com‘, 8 type: ‘POST‘, 9 data: userInfo, 10 success: (data) => {}, 11 });
此时默认的提交的contentType
为application/x-www-form-urlencoded
,此时提交的数据将会格式化成: