gpt4 book ai didi

javascript - 浏览器安全策略如何与 XMLHttpRequest 一起工作?

转载 作者:行者123 更新时间:2023-11-30 16:27:58 27 4
gpt4 key购买 nike

<分区>

我读到浏览器安全策略背后的主要思想是您不能从与提供页面本身的域不同的域中检索数据。但是我不明白为什么我可以这样做?

<!doctype html>
<html>
<head>
<title>Template</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<script src="jscript.js"></script>
</head>
<body>
</body>
</html>

window.onload = function() {
var request = new XMLHttpRequest();
var url = "http://mbigras.github.io/geolocation/data.json";
request.open("GET", url);

request.onload = function() {
if (request.status == 200) {
var object2 = JSON.parse(request.responseText);
alert(object2.name + ", age " + object2.age);
}
}
request.send(null);
};

因为当我使用 XMLHttpRequest 从 github 请求 json 数据时,页面不是从我家里的计算机(本地计算机上的 index.html)提供的吗?还是我误解了什么?

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com