ajax进行前台到后台传输,传输方式为POST格式时的参数

前端之家收集整理的这篇文章主要介绍了ajax进行前台到后台传输,传输方式为POST格式时的参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

$.ajax({

type :"POST",

async:false,

data : dataInfo,

timeout:300000,

contentType: "application/x-www-form-urlencoded",

url : abc,

dataType:"json",

success : function(response) {

result=response;

},

error : function(XMLHttpRequest,textStatus,errorThrown,data) {

alert("数据有误,请审核!");

}

});

利用POST方式,对应的contentType应该为application/x-www-form-urlencoded

利用GET方式,对应的contentType应该为application/json或者text

猜你在找的Ajax相关文章