我正在尝试从翡翠中包含的html文件访问翡翠变种。例如...

路线:

router.get('/htmltest', function(req, res, next) {
  res.render('htmltest', { title: 'HTML TEST' });
});


玉:

block content
    include htmltest.html


htmltest.html:

<p>This is included html #{title}</p>


标题不会以html显示。我想我有一个范围界定问题。关于如何实现此目标有任何想法吗?

最佳答案

玉中以开括号<开头的每一行都被视为单个文本字符串。您需要将htmltest.html文件更改为...

p This is included html #{title}

07-26 06:56