使用Express在动态路由上提供静态文件

时间:2012-07-19 20:57:56

标签: node.js express

我希望提供静态文件,就像通常使用express.static(static_path)一样,但是在动态上 通常用

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

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

4 个答案:

答案 0 :(得分:98)

好。我在Express'response object的源代码中找到了一个示例。这是该示例的略微修改版本。

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选项。

答案 1 :(得分:13)

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

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

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

答案 2 :(得分:2)

您可以使用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);
});

答案 3 :(得分:0)

这应该有效:

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