我正在建立一个需要从蒸汽社区市场上市的网站。我知道如何获取JSON,但我收到了控制台错误:Uncaught SecurityError: Failed to set the 'domain' property on 'Document': 'https://steamcommunity.com/' is not a suffix of ''.
看起来我设置了错误的域名。有谁知道我需要使用的正确域名?
我的JavaScript代码:
<script>
document.domain = "https://steamcommunity.com/";
$(document).ready(function() {
$.getJSON("http://steamcommunity.com/market/priceoverview/?country=US¤cy=1&appid=730&market_hash_name=P90%20%7C%20Asiimov%20%28Factory%20New%29", function(results) {
$("#price").text(results.lowest_price);
});
});
</script>
答案 0 :(得分:2)
您无法在浏览器中使用Javascript访问Steam市场数据,因为Steamcommunity服务器不提供“访问控制 - 允许 - 来源”和#39;在回复中标题。
关于此的更多信息也可以通过关键字&#34; CORS&#34;。
找到