gpt4 book ai didi

javascript - 使用 Javascript 调用 API

转载 作者:行者123 更新时间:2023-11-28 02:37:49 24 4
gpt4 key购买 nike

调用此 api 的正确方法是什么? api 的 url 是:https://www.bitstamp.net/api/ticker/

我想读“高”值...

<p id="demo"></p>
<script>
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myObj = JSON.parse(this.responseText);
document.getElementById("demo").innerHTML = myObj.high;
}
};
xmlhttp.open("GET", "https://www.bitstamp.net/api/ticker/", true);
xmlhttp.send();
</script>

我错过了什么?谢谢!!

最佳答案

向 URL 添加时间戳使其对我有用:

<p id="demo"></p>
<script>
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myObj = JSON.parse(this.responseText);
document.getElementById("demo").innerHTML = myObj.high;
}
};
xmlhttp.open("GET", "https://www.bitstamp.net/api/ticker/?u" + new Date().getTime(), true);
xmlhttp.send();
</script>

        var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var myObj = JSON.parse(this.responseText);
document.getElementById("demo").innerHTML = myObj.high;
}
};
xmlhttp.open("GET", "https://www.bitstamp.net/api/ticker/?u" + + new Date().getTime(), true);
xmlhttp.send();
<p id="demo"></p>

关于javascript - 使用 Javascript 调用 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46018382/

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