标签: 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 });