ajax 跨域请求

Posted 一粒麦子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax 跨域请求相关的知识,希望对你有一定的参考价值。

1、

$.ajax({
type: "get",
async: false,
url: "http://61.160.194.208:8383/Api/login?account=api_tcs&password=123456",
dataType: "jsonp",
jsonp: "callback",//传递给请求处理程序或页面的,用以获得jsonp回调函数名的参数名(一般默认为:callback)
jsonpCallback:"flightHandler",//自定义的jsonp回调函数名称,默认为jQuery自动生成的随机函数名,也可以写"?",jQuery会自动为你处理数据
xhrFields: { withCredentials: true },
success: function(json){
// console.log(json)

},
error: function(){
alert(‘fail‘);
}
});

 

function flightHandler(data) {
console.log(data);

}



2、getJson

$.getJSON(‘http://61.160.194.208:8383/Api/login?account=api_tcs&password=123456&callback=?‘,function (data) {
jession= data.jsession;
if(jession){
getHistoryLast(‘13701047694,13717533834,13717534041‘);
}
});


























以上是关于ajax 跨域请求的主要内容,如果未能解决你的问题,请参考以下文章

前端Jquery-Ajax跨域请求,并携带cookie

简单ajax跨域请求

ajax跨域请求

JQuery - Ajax和Tomcat跨域请求问题解决方法!

跨域 jquery ajax 请求

PHP中运用jQuery的Ajax跨域调用实现代码