在express.js中动态限制对文件夹中某些文件的访问

时间:2018-10-25 11:44:26

标签: node.js express

如何动态限制对express.js文件夹中特定图像的访问?

例如:限制对/img/1.jpg的访问,但不限制对/img/2.jpg的访问。 就像这样:

router.get(/img/:id', (req, res, next) => {
    //check here if the user should be able to see the file or not
});

0 个答案:

没有答案
相关问题