1、原生ajax请求方式:
1 var xhr = new XMLHttpRequest();
2 xhr.open("POST", "http://xxxx.com/demo/b/index.php", true);
3 xhr.withCredentials = true; //支持跨域发送cookies
4 xhr.send();
2、jquery的ajax的post方法请求:
$.ajax({
type: "POST",
url: "http://xxx.com/api/test",
dataType: "json",
// 允许携带证书
xhrFields: {
withCredentials: true
},
// 允许跨域
crossDomain: true,
success:function(){
},
error:function(){
}
})
3、服务器端设置:
header("Access-Control-Allow-Credentials: true");
header("Access-Control-Allow-Origin: http://wsw.xxx.com");
- 看不过瘾?点击下面链接!
- docker pull 下来的镜像文件存放的位置
- spring与mybatis三种整合方法详细教程
- JavaScript实现的商品抢购倒计时功能示例代码教程
- win10系统自带Wifi如何开启
- Win10 Build 15063.138更新了什么
- Win10创意者更新不显示文字怎么解决