gpt4 book ai didi

javascript - 在没有 'await' 的情况下使用 'async' 时,Node.js 显示不清楚的错误

转载 作者:行者123 更新时间:2023-12-04 15:00:53 24 4
gpt4 key购买 nike

这段代码有错误

exports.getResults = (req, res) => {
status = await miDealApi.getResults()
res.json({
status: status
})
}

问题是我在没有将方法声明为“async”的情况下使用了“await”,但是 Node.js 给我的错误非常不清楚,根本无法帮助我弄清楚。

internal/modules/cjs/loader.js:999
throw err;
^

[wrapSafe (internal/modules/cjs/loader.js:979:16),Module._compile
(internal/modules/cjs/loader.js:1027:27),Object.Module._extensions..js
(internal/modules/cjs/loader.js:1092:10),Module.load
(internal/modules/cjs/loader.js:928:32),Function.Module._load
(internal/modules/cjs/loader.js:769:14),Module.require
(internal/modules/cjs/loader.js:952:19),require
(internal/modules/cjs/helpers.js:88:18),Object.<anonymous> (C:\Users\user\Documents\DT\projects\suresort-manager\controllers\waveFactory.js:6:30),Module._compile
(internal/modules/cjs/loader.js:1063:30),Object.Module._extensions..js
(internal/modules/cjs/loader.js:1092:10)]
PS C:\Users\user\Documents\DT\projects\suresort-manager>

我能做些什么来让以后的错误更清楚吗?

最佳答案

一种可能是您的 node.js 版本有点旧,因此不会给您正确的错误。

使用 Node 12 运行我得到:

/project/foo.js:2
status = await miDealApi.getResults()
^^^^^

SyntaxError: await is only valid in async function
at wrapSafe (internal/modules/cjs/loader.js:915:16)
at Module._compile (internal/modules/cjs/loader.js:963:27)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1027:10)
at Module.load (internal/modules/cjs/loader.js:863:32)
at Function.Module._load (internal/modules/cjs/loader.js:708:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:60:12)
at internal/main/run_main_module.js:17:47

所以您可能想检查一下您的版本?

node -v
12.21.0

您应该始终以至少使用稳定版本为目标。

关于javascript - 在没有 'await' 的情况下使用 'async' 时,Node.js 显示不清楚的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66970669/

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