我在网页上执行 GET 请求,但它不起作用,因为“请求的资源上不存在 'Access-Control-Allow-Origin 标头”,我认为这意味着我需要标头。我将如何在我的 jquery.js 网站上设置这个标题。我的代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<title>Sample Page</title>
<script>
var settings = {
"async": true,
"crossDomain": true,
"url": "https://games.roblox.com/v1/games?universeIds=140239261",
"method": "GET"
}
$.ajax(settings).done(function (response) {
console.log(response);
var content = response.data.playing;
$("#counter").append(content);
});
</script>
</head>
<body>
<h1>Sample Page</h1>
<div id="counter">playing: </div>
</body>
</html>
提前感谢您的帮助。我找不到用 jquery 做到这一点的方法(至少我的代码是如何设置的),所以请帮忙!(我是 javascript 的初学者,所以尽量让答案简单。)
当年话下
白衣染霜花
相关分类