我是网络开发新手,所以请原谅。
我进行简单的 api 调用
const getWorldTotal = async () => {
const response = await fetch('https://cors-anywhere.herokuapp.com/https://health-api.com/api/v1/covid-19/total');
const worldTotal = await response.json();
alert(worldTotal.total_confirmed)
document.getElementById('total') = worldTotal.total_confirmed
};
getWorldTotal()
这是我正在尝试更新的 html
<div class="card text-white bg-secondary mb-3" id="total" style="max-width: 20rem;">
<div class="card-header">Header</div>
<div class="card-body">
<h4 class="card-title" id="total"></h4>
</div>
</div>
我收到以下错误
index.html:80 未捕获(承诺中)ReferenceError:getWorldTotal 赋值中的左侧无效
我的问题是我做错了什么?这也是在进行 api 调用时更新 HTML 的最佳方法吗?
不负相思意
HUX布斯
收到一只叮咚
相关分类