这两个都是文档里提到的中间件的写法,但是第一个四个参数的这个 ide 识别不了,第二个三个参数的这个,ide 可以识别,所以也有智能提示和代码高亮。这是为什么呢,是 webstorm 的 bug 还是我少了什么步骤
app.use((err, req, res, next)=> {
});
app.use((req, res, next)=> {
});
1
initd 2021-08-10 18:09:59 +08:00
试试 app.use(function(err, req, res, next){})
可能是 箭头函数 访问不到 作用域 |
2
akaxiaok339 2021-08-10 18:20:20 +08:00
因为 WebStorm 是根据一份 d.ts 来提示的,你不用 TS 指定类型,它就推断不出来
https://stackoverflow.com/questions/50218878/typescript-express-error-function |