async function f() {
// return await 'hello async';
let s = await "hello async";
let data = await s.split('');
return data;
}
如果async函数中有多个await 那么then函数会等待所有的await指令运行完 再去执行
f().then(v => {
console.log(v);
}).catch(e => {
console.log(e);
})
async function f2() {
// throw new Error("出错了!");
try {
await Promise.reject("出错了");
} catch (error) {}
return await Promise.resolve("hello");
}
f2().then(succ => {
console.log(succ);
}).catch(err => {
console.log(err);
})
可以对接口获得的数据进行处理,返回自己需要的数据。
const getJSON = function(url) {
// 返回一个promise对象
return new Promise((Resolved, Rejected) => {
const xhr = new XMLHttpRequest();
// 打开网址
xhr.open('GET', url);
// 状态改变,调用函数
xhr.onreadystatechange = handler;
xhr.responseType = 'json';
xhr.setRequestHeader("Accept", 'application/json');
// 发送
xhr.send();
function handler() {
// console.log(this.readyState);
// console.log(this);
if (this.readyState === 4) {
if (this.status === 200) {
Resolved(this.response);
} else {
Rejected(new Error(this.statusText));
}
}
}
})
}
async function getNowWeather(url) {
// 发送Ajax
let res = await getJSON(url);
// console.log(res);
// 获取数据
let arr = await res.data;
// 返回昨天的天气
return arr.yesterday;
}
getNowWeather("https://api.vvhan.com/api/weather?city=北京&type=week").then(
now => {
console.log(now);
}
)
版权说明 : 本文为转载文章, 版权归原作者所有 版权申明
原文链接 : https://blog.csdn.net/qq_46186155/article/details/120439838
内容来源于网络,如有侵权,请联系作者删除!