我正在使用以下方法将.jQuery Ajax请求发送到.net驱动的Web服务。我的cookie被发送没有任何问题。但是当我尝试强制刷新(Ctrl + F5)时,省略了cookie,请求类型也显示为OPTION
而不是GET
$.ajax({
type: "GET",
url: url,
data: param,
contentType:"application/json; charset=utf-8",
dataType: "json",
success: successFunc,
error: errorFunc,
beforeSend:function(){$.mobile.loading('show');},
complete:function(){$.mobile.loading('hide');}
});
我的请求在同一个域中,所以我希望同样的域源策略在这里不会有问题。
答案 0 :(得分:0)
$.ajax( {
//Just add this code
xhrFields: {
withCredentials: true
}
});