从Tweet对象发送图片数据会导致模板中的图像损坏

时间:2018-05-07 01:15:07

标签: node.js express twitter pug

我试图将配置文件图片数据从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}`)

0 个答案:

没有答案