I have a page which I am rendering like this:
res.render('account.pug', {user: req.user._id})
—and which is supposed to show a profile picture which corresponds to the user like this:
img(id='profilepicture' src='profilepictures/#{user}')
However, the Pug renders as:
<img id='profilepicture' src='profilepictures/#{users}' />
—instead of:
<img id='profilepicture' src='profilepictures/USERID' />
—so the correct profile picture does not display.
It is weird because when I write div #{user}
it renders correctly as <div>USERID</div>
, so it clearly has something to do with it being that I am interpolating on an attribute mid-string. I have tried using back ticks instead of quote marks but this did not work either.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…