为什么 await 运行 之后的代码不马上呢?它不应该是非阻塞的吗?

Why doesn't the code after await run right away? Isn't it supposed to be non-blocking?

我很难理解 async 和 await 在幕后是如何工作的。我知道我们有承诺,通过使用“then”函数可以使我们的代码成为非阻塞代码,我们可以在承诺得到解决后放置我们需要做的所有工作。以及我们想要并行进行的工作,以保证我们只是将它写在我们的 then 函数之外。因此代码变得非阻塞。但是我不明白 async await 是如何生成非阻塞代码的。

async function myAsyncFunction() {
  try {
    let data = await myAPICall('https://jsonplaceholder.typicode.com/posts/1');
    // It will not run this line until it resolves await.
    let result = 2 + 2;
    return data;
  }catch (ex){
    return ex;
  }
}

见上面的代码。在解决 API 呼叫之前,我无法继续前进。如果它使我的代码阻塞代码,那么它比承诺更好吗?还是我错过了 asyncawait 的某些内容?我应该把不依赖于 await 调用的代码放在哪里?这样它就可以继续工作而无需 await 暂停执行?

我正在添加我想在异步等待示例中复制的 Promise 代码。

function myPromiseAPI() {
  myAPICall('https://jsonplaceholder.typicode.com/posts/1')
    .then(function (data) {
        // data
    });
   // runs parallel
  let result = 2 + 2;
}

正如其名称所暗示的那样,await 关键字将导致函数 "wait" 直到其承诺在执行下一行之前解析。 await 的重点是让代码等到操作完成后再继续。

此代码与阻塞代码之间的区别在于,外部 函数可以在函数等待异步操作完成时继续执行。

asyncawait 只是 promises 之上的语法糖。它们允许您编写看起来很像普通同步代码的代码,即使它在幕后使用了承诺。如果我们在那里将您的示例翻译成明确适用于承诺的内容,它将看起来像:

function myAsyncFunction() {
  return myAPICall('https://jsonplaceholder.typicode.com/posts/1')
    .then(function (data) {
       let result = 2 + 2;
       return data;
    })
    .catch(function (ex) {
        return ex;
    });
}

正如我们在这里看到的,let result = 2 + 2; 行位于 .then() 处理程序中,这意味着它不会在 myAPICall() 解析之前执行。使用await也是一样。 await 只是为您提取了 .then()

要记住的一件事(我认为您正在寻找的要点)是您不必立即使用 await。如果您这样编写函数,那么您可以立即执行 let result = 2 + 2; 行:

const timeout = 
    seconds => new Promise(res => setTimeout(res, seconds * 1000));

function myAPICall() {
  // simulate 1 second wait time
  return timeout(1).then(() => 'success');
}

async function myAsyncFunction() {
  try {
    console.log('starting');

    // just starting the API call and storing the promise for now. not waiting yet
    let dataP = myAPICall('https://jsonplaceholder.typicode.com/posts/1');

    let result = 2 + 2;

    // Executes right away
    console.log('result', result);

    // wait now
    let data = await dataP;

    // Executes after one second
    console.log('data', data);

    return data;
  } catch (ex) {
    return ex;
  }
}

myAsyncFunction();

经过一番澄清,我可以看出您真正想知道的是如何避免必须一个接一个地等待两个异步操作,而是让它们并行执行。事实上,如果你在另一个之后使用一个 await,第二个将在第一个完成之前不会开始执行:

const timeout = 
    seconds => new Promise(res => setTimeout(res, seconds * 1000));

function myAPICall() {
  // simulate 1 second wait time
  return timeout(1).then(() => 'success');
}

async function myAsyncFunction() {
  try {
    console.log('starting');

    let data1 = await myAPICall('https://jsonplaceholder.typicode.com/posts/1');
    // logs after one second
    console.log('data1', data1);

    let data2 = await myAPICall('https://jsonplaceholder.typicode.com/posts/2');
    // logs after one more second
    console.log('data2', data2);
  } catch (ex) {
    return ex;
  }
}

myAsyncFunction();

为了避免这种情况,您可以做的是 启动 这两个异步操作,通过在不等待它们的情况下执行它们,将它们的承诺分配给一些变量。然后你可以等待两个承诺:

const timeout = 
    seconds => new Promise(res => setTimeout(res, seconds * 1000));

function myAPICall() {
  // simulate 1 second wait time
  return timeout(1).then(() => 'success');
}

async function myAsyncFunction() {
  try {
    console.log('starting');
    // both lines execute right away
    let dataP1 = myAPICall('https://jsonplaceholder.typicode.com/posts/1');
    let dataP2 = myAPICall('https://jsonplaceholder.typicode.com/posts/2');

    let data1 = await dataP1;
    let data2 = await dataP2;

    // logs after one second
    console.log('data1', data1);
    console.log('data2', data2);
  } catch (ex) {
    return ex;
  }
}

myAsyncFunction();

另一种方法是使用 Promise.all() 进行一些数组分解:

const timeout = 
    seconds => new Promise(res => setTimeout(res, seconds * 1000));

function myAPICall() {
  // simulate 1 second wait time
  return timeout(1).then(() => 'success');
}

async function myAsyncFunction() {
  try {
    console.log('starting');

    // both myAPICall invocations execute right away
    const [data1, data2] = await Promise.all([
        myAPICall('https://jsonplaceholder.typicode.com/posts/1'), 
        myAPICall('https://jsonplaceholder.typicode.com/posts/2'),
    ]);

    // logs after one second
    console.log('data1', data1);
    console.log('data2', data2);
  } catch (ex) {
    return ex;
  }
}

myAsyncFunction();