在 JavaScript 项目中,遇到错误“await is only valid in async function” ”。当尝试在非异步函数中使用 wait 关键字时,会出现此错误。
要解决此问题,您必须将外部函数 start 也修改为异步函数:
async function start(a, b) { const result = await helper.myfunction('test', 'test'); console.log(result); }
由于start是您打算使用await的外部函数,因此需要将其声明为异步函数才能使用await。这允许外部函数正确处理并等待其中异步函数 myfunction 的结果。
以上是为什么嵌套 JavaScript 函数调用中会出现'await 仅在异步函数中有效”的情况?的详细内容。更多信息请关注PHP中文网其他相关文章!