我正在尝试在 ejs 模板中渲染图像。我正在这样做:
var pic = "./public/images/"+collection_id+"/"+photo_id+".png";
var comments = "bla bla bla";
res.render('index', { title: 'Viewer' , pic: pic , comments: comments } );
在我的 .ejs 里面
<img src='<%= pic %>' />
然而,我发现真正的要求是
GET /collection/1/photo/public/images/1/1.png 404 1ms
其中 /collection/1/photo/1 是我要路由的 URL
我该怎么做才能在模板内渲染图像?