fetch请求get
在浏览器执行http请求,可以使用fetch函数;
fetch(“url”).then(response => response.text())
.then(data => console.log(JSON.parse(data)[‘status’]))
.catch(error => console.error(error))
直接返回json数据:
fetch(“url”).then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error))
执行两次:
fetch("https://1.com").then(response