使用express.static中间件

时间:2017-12-30 06:19:55

标签: node.js express static

以下两个代码都在localhost:3000 /服务器启动时提供index.html。

使用express.static

const path = require('path');
const express = require('express'); 
const PORT = process.env.port || 3000;
const publicPath = path.join(__dirname, '../public');

var app = express();
app.use(express.static(publicPath));
app.listen(PORT, () => {
  console.log(`Server is running on port ${PORT}`);
})

使用app.get

const path = require('path');
const express = require('express');
const PORT = process.env.port || 3000;
const publicPath = path.join(__dirname, '../public');

var app = express();

app.get('/',(req,res) => {
  res.sendFile(publicPath + '/index.html');
})

app.listen(PORT, () => {
  console.log(`Server is running on port ${PORT}`);
})

那么为什么有人会选择express.static而不是app.get来提供静态html文件。 static中间件在快递上的用途是什么

1 个答案:

答案 0 :(得分:0)

在提供不是index.html的任何其他静态页面时,没有使用express.static will的代码失败,即使index.html包含其他静态文件(作为css),它也会失败。