本文主要是介绍application/x-www-form-urlencoded 和 new formData(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
请求体body里面 form Data 格式
1、content-type:application/x-www-form-urlencoded 原生form表单提交 需要用qs 格式化成URL格式 &拼接
2、new formData() 提交表单,此时content-type 默认为 multipart/form-data; boundary=----
区别:两种都是表单提交,urlencoded只能包含基础表单数据name1=value1&name2=value2格式,formData 可包含二进制流,也就可上传文件、new Blob()、大文本
Content-Type: multipart/form-data
一般由提交 new formData() 类型数据浏览器自动指定content-type,暂时未手动指定Content-Type: multipart/form-data
这篇关于application/x-www-form-urlencoded 和 new formData()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!