如何使用req.params和join方法在express中发送sendFile?

时间:2019-03-29 06:28:01

标签: node.js express

我正在使用路由参数在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'));
}))

1 个答案:

答案 0 :(得分:0)

如上所述,您不使用view engine

一样添加view engine
  1. 哈巴狗link
  2. Ejs link