下面,img标签显示GET /user/(%27./files/%27)404
如何让它看起来在正确的位置?
玉文件:
block content
h1.
#{user.name}
ul
li Email: #{user.email}
li Phone: #{user.phone}
li user ID: #{user._id}
li <img src=('./files/' + user.name + '.png')/>
我尝试将以下内容添加到app.js
app.get('./files/*:path', function(req, res) {
res.sendfile(path.resolve(req.params.path))
});
没有变化。
答案 0 :(得分:1)
在你的Jade模板中试试这个:
li
img(src='./files/' + user.name + '.png')