js:fetch在浏览器中发送 HTTP 请求
【摘要】
文档:
https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetchhttps://www.ruanyifeng.com/...
文档:
- https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API/Using_Fetch
- https://www.ruanyifeng.com/blog/2020/12/fetch-tutorial.html
示例
发送GET请求
fetch("http://httpbin.org/get")
.then(function (response) {
return response.json();
})
.then(function (data) {
console.log(data);
});
async/await写法
(async function () {
const res = await fetch("http://httpbin.org/get");
const data = await res.json();
console.log(data);
})();
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/126949844
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)