我正在尝试将我的 cookie 发送到外部 url,但我看不到我的 cookie 未在请求标头中设置,这导致从外部服务器抛出错误
下面是代码
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello-Test</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$.ajax({
headers: {
"Accept ": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"MY_COOKIE": $.cookie("MY_COOKIE"),
},
type: "GET",
dataType: "json",
url: 'external_url',
success: function(data){
alert(data);
},
error: function(error) {
alert(error);
}
});
});
</script>
</body>
</html>
任何想法,为什么在调用外部 url 时未在请求标头中设置 cookie,但在从浏览器尝试时正确获取数据。
谢谢,普拉茨