🥇 表单提交的常用方式:

🥈 原生form默认的提交方式

content-type: application/x-www-form-urlencoded

🥈 FormData对象构建表单,用XMLHttpRequest来发送数据的方式

content-type: multipart/form-data

🥈 jquery中的ajax()的方式

content-type:application/x-www-form-urlencoded;
注意:ajax()中的data设置为formdata类型数据时,content-type要设置为false,ajax才会加上正确的content-type。

🥈 axios 的方式

content-type : application/json