以下两个代码都在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
中间件在快递上的用途是什么
答案 0 :(得分:0)
在提供不是index.html的任何其他静态页面时,没有使用express.static will
的代码失败,即使index.html包含其他静态文件(作为css),它也会失败。