https://blog.csdn.net/qq_34545974/article/details/100593539
$.ajax({
type: "post", //区分请求是get还是post
url: '/port/FaceDynamicServer/sync/search/searchaccesslog', //请求地址
async: false, //区分同步异步请求 默认true异步请求,等于false同步请求
data: JSON.stringify({ //post请求参数 在要求contentType: "application/json"的时候需要将其转换成字符串,否则有无法识别
arrCameraId: [],
arrEyeGlasses: [],
arrGender: [],
arrMask: [],
cardId: "",
choiceId: "",
}),
xhrFields: { withCredentials: true },//设置XHR对象。例如,如果需要的话,你可以用它来设置withCredentials为true的跨域请求。
headers: { //设置请求头 请求头无法对COOKIE等浏览器信息进行设置,因为浏览器限制,浏览器会默认将COOKIE信息带到请求
AuthCacheKey: "27f661a9704748a4af41af0eccc978ea&&fds_11.20.0.229_10016" //请求头
},
contentType: "application/json ;charset=utf-8", //设置请求的编码格式
success: function (data) { //成功的返回
console.log(data)
}
});