gpt4 book ai didi

javascript - 如果 javascript "async"函数的主体中没有 "await",它会以任何不同的方式执行吗?

转载 作者:行者123 更新时间:2023-12-01 15:20:52 29 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Async function without await in JavaScript

(4 个回答)


2年前关闭。




来自 MDN

Asynchronous functions operate in a separate order than the rest of the code via the event loop,



但是,我不明白这对于一个不显式返回任何内容且根本不使用 await 的简单函数意味着什么。在这种情况下声明一个函数 async 是否有用?它会在稍后执行以允许页面在执行时响应吗?我的测试显示它是同步执行的,根本不推迟:

async function foo() {
console.log('Start heavy stuff');
for (let i = 0; i < 90000000; ++i) {
Math.random()
}
console.log('Fnish heavy stuff')
}

foo();
console.log('All done, synchronously');


日志以期望的顺序显示,那么在这种情况下是否可以使用此函数异步?这是否类似于使用 setTimeout(foo, 0) 调用此函数? ?

最佳答案

async函数同步运行,直到第一个 awaitreturn到达,抛出一个错误,或者代码执行只是在函数的末尾运行(就像它在你的函数中所做的那样)。此时,该函数返回一个 promise 。

Is it in any way useful to declare a function async in this case?



不是在那种特定情况下,不。该函数似乎没有任何理由返回一个 promise ,并且正如您在测试中看到的那样,它的所有工作都是同步完成的。

Would it be executed at a later time to allow the page to respond for example while it executes?



不。

声明函数确实没有充分的理由 async当它不使用 await .它使它返回一个 promise ,但除此之外不做任何其他事情。也许如果你打算在 promise 链中使用它,但是......

这是一个稍微不同的示例,说明 async函数同步运行:

async function example1() {
console.log("this is done synchronously");
await Promise.resolve();
console.log("this is done asynchronously");
}

console.log("before calling example1");
example1().then(() => {
console.log("promise from example1 was fulfilled");
});
console.log("after calling example1");


输出:

在调用 example1 之前
这是同步完成的
调用 example1 后
这是异步完成的
来自 example1 的 promise 已实现

关于javascript - 如果 javascript "async"函数的主体中没有 "await",它会以任何不同的方式执行吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61119342/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com