我试图用数据库中的内容呈现视图,我的数据库包含html格式化的内容,我想保留这种格式,但是当我尝试渲染内容时,我得到它作为字符串而不是html,无论如何我可以解析这些内容并保持格式化吗?
我不希望标签显示在网站上。
查看contact.jade
div.shareimg(style='background-image:#{document.Img}')
div#shareContent
h2.shareTag #{document.insightheader}
p.shareTag #{document.description}
b#TLDT.shareTag #{document.TLDR}
p.shareTag #{document.MoreInfo}
节点
app.get('/share/:id', function(req, res) {
var db = req.db_login;
console.log(req.params.id)
db.collection('insights').findById(req.params.id, function(error, document) {
console.log(document)
if (error || !document) {
res.render('error', {});
} else {
res.render('contact', { document : document });
}
})
});
的console.log
{
_id: 544cf40e9f697dc430ccd2dd,
Img: 'url(http://localhost:3000/images/previewImg.svg)',
insightheader: '<p>dsada</p>',
description: '<p>dsa</p><p>dsa</p><p>das</p><p>dasdd</p>',
TLDR: '<strong>TLDR;dasdas</strong>',
MoreInfo: '<p>dsadsa</p>',
date: '\'1414329358033\''
}
结果