📜  如何在 html 中显示 api 数据 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:01.449000             🧑  作者: Mango

代码示例1
const p = document.getElementById("myPelement")
fetch('http://example.com/movies.json')
    .then((response) => {
        return response.json();
    })
    .then((data) => {
        p.innerText = data
    });