ajax常见的参数
type: "post",
contentType: "application/json; charset=utf-8",//请求时候的传参类型
dataType: "json", //返回值类型
url: "ajax/getData", 发送请求的地址 默认为当前页地址
data:JSON.stringify(json),
timeout:80 //要求为Number类型的参数,设置请求超时时间(毫秒)。此设置将覆盖$.ajaxSetup()方法的全局设置。
async: True //默认设置为true,所有请求均为异步请求。如果需要发送同步请求,请将此选项设置为false。注意,同步请求将锁住浏览器,用户其他操作必
//须等待请求完成才可以执行
success: function(data){ //成功回调函数
console.log(data);
},
error : function(msg) { //错误回调函数
console.log(msg);
ajax接受的数据类型 ContentType
ContentType:application/x-www-form-urlencoded :