我想将<br/>
标记或某种形式的换行符传递到从快递到玉石的路线中。例如:
表达
router.get('/', function(req, res, next) {
res.render('homepage', {
content:'hello<br/>how are you'
}
});
玉
p=content
但我只是在输出中得到hello<br/>how are you
而不是
hello
how are you
PS我已经添加了app.locals.pretty = true;
,否则html会被完全省略
答案 0 :(得分:1)
如果您使用!=
会怎样?
p!=content