我试图将配置文件图片数据从Tweet对象发送到我的PUG模板。但是,它会导致图像损坏。
来自server.js的Snippit
app.get('/tweet/:id', async(req, res) => {
try {
const data = await T.get('statuses/show/' + req.params.id, {});
res.render('tweet', { stweet_picture: [data.user.profile_image_url_https] });
} catch(error) {
console.log(error);
}
});
来自PUG模板的Snippit
.tweet-container
.bird-dude-container
h3 Information
.text-container
h3
img(src=`#{stweet_picture}`)