美文网首页
async、await ES7优化ES6异步编程的解决方案

async、await ES7优化ES6异步编程的解决方案

作者: 背着生活往前走你才辨的出美和丑 | 来源:发表于2020-12-22 11:22 被阅读0次

async、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中应用。

相关文章

网友评论

      本文标题:async、await ES7优化ES6异步编程的解决方案

      本文链接:https://www.haomeiwen.com/subject/asiagktx.html