72

我想像通常那样提供静态文件,express.static(static_path)但像通常那样在动态路由上提供服务

app.get('/my/dynamic/:route', function(req, res){
    // serve stuff here
});

一位开发人员在此评论中暗示了一个解决方案,但我并不清楚他的意思。

4

4 回答 4

111

好的。我在 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选项。

于 2012-07-19T21:06:07.287 回答
16

我使用下面的代码来提供不同 url 请求的相同静态文件:

server.use(express.static(__dirname + '/client/www'));
server.use('/en', express.static(__dirname + '/client/www'));
server.use('/zh', express.static(__dirname + '/client/www'));

虽然这不是你的情况,但它可能会帮助到这里的其他人。

于 2015-09-11T02:04:13.943 回答
8

您可以使用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);
});
于 2019-09-12T22:01:48.337 回答
4

这应该有效:

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

于 2019-03-31T08:14:27.910 回答