在快递中显示图像

时间:2014-02-25 21:22:17

标签: html node.js pug

下面,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))
});

没有变化。

1 个答案:

答案 0 :(得分:1)

在你的Jade模板中试试这个:

li
    img(src='./files/' + user.name + '.png')