async、await ES7优化ES6异步编程的解决方案
2019-11-14
阅读 1 分钟
1.6kasync、await ES7优化ES6异步编程的解决方案; export function:`export async function loginM(username, password) { var res1 = await API.post({ }); console.log(res1) if (res1.code === 200) { } var res2 = await API.post({ }); console.log(res2) if (res2.code === 200) { } console.log(2)}`VUE中应用。