“ TypeError:res.sendFile不是函数”

问题描述

提供index.html效果很好,但是我不能提供PDF。

我正在使用最新版的Express。我已经仔细检查了路径名。

这些路线的代码完全相同,为什么不起作用?

app.use(express.static(__dirname + '/public'));
app.get('/resume',(res) => res.sendFile(__dirname + '/public/resume.pdf'));
app.get(/.*/,(res) => res.sendFile(__dirname + '/public/index.html'));

Project physical structure

解决方法

也尝试在函数参数中添加req

app.get(/.*/,(req,res) => res.sendFile(__dirname + '/public/index.html'));