MDN 网站:https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API
推荐阅读博客:《网络请求 → fetch》
一、基本使用
最简单写法:GET 请求 JSON 数据,不考虑跨域问题
fetch('https://api.github.com')
.then(res=>{return res.json()})
.then(console.log)
.catch(console.error)
「@浪里淘沙的小法师」
MDN 网站:https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API
推荐阅读博客:《网络请求 → fetch》
最简单写法:GET 请求 JSON 数据,不考虑跨域问题
fetch('https://api.github.com')
.then(res=>{return res.json()})
.then(console.log)
.catch(console.error)
「@浪里淘沙的小法师」
让时间为你证明