我从 api GET 调用中获取 JSON。我正在尝试获取我认为是数组的项目的值。我正在尝试控制台记录 json 的低价。
我试图像 open.openDate.btcusd[5] 之类的数组一样循环遍历它。
//来自API的JSON数据
btcusd":{
"high":"9206.36",
"low":"8804.57",
"volume":"1291.122483",
"last":"8989.64",
"bid":"8987.88",
"ask":"8998.24"
//称呼
coin.getOpen()
.then(data=>{
coin.ui(data);
});
//功能
async getOpen(){
const openres = await
fetch(`https://api.lakebtc.com/api_v2/ticker`);
const openBtc = await openres.json();
return {
openDate : openBtc
}
}
//新函数到console.log ui(open){
console.log(open.openDate.btcusd); //I want the low value
}
相关分类