(精华)2020年7月5日 JavaScript高级篇 ES6(async和await)
【摘要】
async function get(){
let res1 = await axios.get('http://127.0.0.1:2000/name.json')
console.lo...
async function get(){
let res1 = await axios.get('http://127.0.0.1:2000/name.json')
console.log(res1);
let id = res1.data.data[0].id
let res2 = await axios.get(`http://127.0.0.1:2000/wepon.json?id=${id}`)
console.log(res2);
return 123
}
let res = get()
res.then(re=>console.log(re))
// 适用于 第二次请求和第一次请求没有关系
async function get1(){
let res = await Promise.all([(axios.get('http://127.0.0.1:2000/name.json')),(axios.get(`http://127.0.0.1:2000/wepon.json?id=3`))])
console.log(res);
}
get1()
// 异常情况
async function get2(){
let res = await Promise.all([(axios.get('http://127.0.0.1:2000/name.json')),(axios.get(`http://127.0.0.1:2000/wepon.json?id=${id}`))])
console.log(res);
}
ge2t().catch(res=>console.log(res))
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
文章来源: codeboy.blog.csdn.net,作者:愚公搬代码,版权归原作者所有,如需转载,请联系作者。
原文链接:codeboy.blog.csdn.net/article/details/107136138
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)