gpt4 book ai didi

javascript - 为什么我收到错误 "requires a generator function"

转载 作者:行者123 更新时间:2023-12-01 01:51:22 25 4
gpt4 key购买 nike

我通过 npm 安装了模块“koa-cache-control”。我将以下行添加到我的 index.js 中。

const cacheControl = require('koa-cache-control');

然后...

app.use(cacheControl({
noCache: true
}));

这是我启动 Node 时遇到的错误。有什么线索吗?

AssertionError: app.use() requires a generator function
at Application.app.use

(/home/www/node_modules/koa/lib/application.js:106:5)
at Object.<anonymous> (/home/www/index.js:17:5)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
at run (bootstrap_node.js:389:7)
at startup (bootstrap_node.js:149:9)

谢谢!

最佳答案

您似乎使用的是旧版本的 Koa。 1.x 版本使用基于生成器类型的中间件,在版本 2 中更改为 Promises。

您必须更新 Koa 或使用 koa-cache-control 的旧版本 1.0.0

关于javascript - 为什么我收到错误 "requires a generator function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51469200/

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