我很擅长使用JavaScript来执行请求,但我希望从https://www.halowaypoint.com获取页面的HTML,但仍会收到“XMLHttpRequest无法加载https://www.halowaypoint.com/en-us/players/PLAYER/halo4的错误响应。”否Access-Control-Allow-Origin'标头出现在请求的资源上。因此不允许原始'URL'访问。“ (PLAYER已被替换)。
我看到CORS在环顾四周后被多次提及,但我没有服务器端访问权限,我不确定如何在请求中反映这一点。有办法解决这个问题吗?
这是我到目前为止使用的代码:
$.ajax({
type: 'get',
url: 'https://www.halowaypoint.com/en-us/players/PLAYER/halo4',
dataType:'text',
contentType: 'text/plain',
xhrFields: {
withCredentials: false
},
headers: {
},
success: function(data) {
alert(data)
},
error: function() {
alert('Error')
}
});
谢谢!