EJS无法在静态公共文件夹中找到图像
我正在尝试使用 EJS 将 html 模板渲染为 PDF,但是图像没有出现。 我的项目结构:
- public
- images
image.jpg
- routes
documentsRoute.js
- services
documentsService.js
- views
document-template.ejs
server.js
我将公共文件夹设置为 server.js 中的静态文件夹,如下所示:
...
const app = express()
app.use(express.static('public'))
...
在我的模板文件中,我使用它作为图像的 src,
<img src="images/image.jpg" alt="my_image">
我从文档服务渲染文件,如下所示:
ejs.renderFile('views/document-template.ejs', inputs, (err, data) => {
if (err){
throw err;
}
let options = {
"format": "A4",
"header": {
"height": "20mm"
},
"footer": {
"height": "20mm"
}
};
pdf.create(data, options).toFile('test.pdf', (err, res) => {
if(err){
throw err;
}
});
})
模板的其余部分已正确呈现,只是图像没有,而是显示替代文本。有谁知道我该如何解决这个问题?
I'm trying render a html template as a PDF using EJS, however the images are not appearing.
My project structure:
- public
- images
image.jpg
- routes
documentsRoute.js
- services
documentsService.js
- views
document-template.ejs
server.js
I am setting the public folder as a static folder in my server.js like so:
...
const app = express()
app.use(express.static('public'))
...
In my template file I'm using this as my src for the image
<img src="images/image.jpg" alt="my_image">
I'm rendering the file from my document service like so:
ejs.renderFile('views/document-template.ejs', inputs, (err, data) => {
if (err){
throw err;
}
let options = {
"format": "A4",
"header": {
"height": "20mm"
},
"footer": {
"height": "20mm"
}
};
pdf.create(data, options).toFile('test.pdf', (err, res) => {
if(err){
throw err;
}
});
})
The rest of the template is rendered correctly, just not the image, instead it shows the alt text. Does anyone know how I could fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在服务器文件中正确设置视图目录。
因此,而不是
app.use(express.static('public'))
尝试
You need to set the view directory correctly in your server file.
So instead of
app.use(express.static('public'))
try
这是
pdf
的路径有问题。尝试使用绝对路径在
pdf
选项的base
属性中添加完整路径:it's rather
pdf
having trouble with the path. try using absolute pathadd full path in the
base
property ofpdf
options: