📜  javascript fetch api - Javascript 代码示例

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

代码示例6
fetch(url)
    .then(response => {
        // handle the response
    })
    .catch(error => {
        // handle the error
    });