在nodejs中,如何在ejs文件类型中使用'_dirname'?

问题描述 投票:0回答:1

我正在尝试在EJS文件中显示图像并设法获取文件名,但是,我需要相对路径,即__dirname + filename才能显示该图像。

node.js ejs dirname
1个回答
0
投票

[使用绝对路径,即从根目录(“ ../uploadImages/"+product[i].productImage;)]访问文件夹


0
投票

使用path.join()获得更好的可访问性:

const path = require("path");
// rest of code
const imagePath = path.join(__dirname, "uploadImages/" + product[i].productImage);
© www.soinside.com 2019 - 2024. All rights reserved.