我正在使用路由参数在express.js中创建路由。我希望将example.com/case/firstCase
作为参数的网址firstCase
。
但是,我不知道如何在params
中使用sendFile。我想做的是附加.html
,但是我认为它不起作用,因为方法join
在每个用逗号分隔的元素之间添加/
。换句话说,路径为views/statics/case/firstCase/.html
这是我在server.js中的代码。
const express = require('express')
const app = express()
const path = require('path')
// no need to use app.use(app.router) because of that update
// function signature express.static(root, [options])
app.use(express.static('public'));
// mount root to views/statics
app.use('/', express.static('views/statics'));
const PORT = process.env.PORT || 3000;
app.listen(PORT,() => {
console.log(`Server is listening on port ${PORT}`)
});
app.get('/case',(req,res,next)=> {
res.sendFile('case.html', { root: path.join( __dirname, 'views/statics')})
})
app.get('/case/:case',(req, res)=>{
res.sendFile(path.join(__dirname, 'views/statics/case', req.params.case + '.html'));
}))