码迷,mamicode.com
首页 > 其他好文 > 详细

请求头的设置

时间:2019-05-06 14:35:37      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:必须   targe   创建   tar   form   ati   method   res   urlencode   

《常用的请求头》

"content-type":‘application/x-www-form-urlencoded;charset=utf-8‘

"content-type":‘multipart/form-data‘    

表单提交值写在encType中  <form encType="application/x-www-form-urlencoded;">

content-type对照表

《ajax上传文件》

var formData = new FormData($("form")[0]);
$.ajax({
 url: "http://xxx",
 dataType: "JSON",
 data: formData,
 method: "POST",
 cache: false,//必须
 processData: false,//必须
 contentType: false,//必须
 success:function(res){
   console.log(res);
 }
});
//这里不需要设置请求头,创建的fromData会以他的格式来设置的

 

请求头的设置

标签:必须   targe   创建   tar   form   ati   method   res   urlencode   

原文地址:https://www.cnblogs.com/zhizou/p/10819135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!