码迷,mamicode.com
首页 > 移动开发 > 详细

ajax请求里的contentType: "application/json"作用

时间:2017-07-31 10:50:46      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:data-   xhr   string   获取   tty   typeof   back   ror   gif   

对于页面中复杂数据的提交:

$.ajax({
type:"post",
url:url,
dataType: "json",
contentType: "application/json",
async:true,
data:JSON.stringify(param),
success:function(result){
if(result.code == "0"){
var rows = result.data;
if(typeof successcallback == ‘function‘){successcallback(rows);}else{alert(result.msg);}
}else{
alert(result.msg);
}
},
error:function(jqXHR, textStatus, errorThrown){
//alert("提交失败,请重试!");
}
});

需要通过JSON.stringify(param)把页面中获取的参数变成json字符串,,此时需要加上contentType: "application/json",

ajax请求里的contentType: "application/json"作用

标签:data-   xhr   string   获取   tty   typeof   back   ror   gif   

原文地址:http://www.cnblogs.com/fu-fu/p/7261870.html

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