我想像通常那样提供静态文件,express.static(static_path)
但像通常那样在动态路由上提供服务
app.get('/my/dynamic/:route', function(req, res){
// serve stuff here
});
一位开发人员在此评论中暗示了一个解决方案,但我并不清楚他的意思。
好的。我在 Express 的响应对象的源代码中找到了一个示例。这是该示例的略微修改版本。
app.get('/user/:uid/files/*', function(req, res){
var uid = req.params.uid,
path = req.params[0] ? req.params[0] : 'index.html';
res.sendFile(path, {root: './public'});
});
它使用该res.sendFile
方法。
注意:安全更改sendFile
需要使用该root
选项。
我使用下面的代码来提供不同 url 请求的相同静态文件:
server.use(express.static(__dirname + '/client/www'));
server.use('/en', express.static(__dirname + '/client/www'));
server.use('/zh', express.static(__dirname + '/client/www'));
虽然这不是你的情况,但它可能会帮助到这里的其他人。
您可以使用res.sendfile
或仍然可以使用express.static
:
const path = require('path');
const express = require('express');
const app = express();
// Dynamic path, but only match asset at specific segment.
app.use('/website/:foo/:bar/:asset', (req, res, next) => {
req.url = req.params.asset; // <-- programmatically update url yourself
express.static(__dirname + '/static')(req, res, next);
});
// Or just the asset.
app.use('/website/*', (req, res, next) => {
req.url = path.basename(req.originalUrl);
express.static(__dirname + '/static')(req, res, next);
});
这应该有效:
app.use('/my/dynamic/:route', express.static('/static'));
app.get('/my/dynamic/:route', function(req, res){
// serve stuff here
});
文档指出动态路由app.use()
有效。见https://expressjs.com/en/guide/routing.html