【发布时间】:2019-10-30 14:01:48
【问题描述】:
所以我将当前日期保存在 cookie 中,并尝试使用模板引擎在 html 网页中显示此 cookie 的值。问题是当我发送包含日期的新模板时,我得到的是 HTML 文本而不是视图。
router.get('/', (req, res) => {
let template = fs.readFileSync(indexFile, 'utf8');
var dataToShow = {"cookie_data": 'Letzte Besuch: ' + now.getHours() + ':' + now.getMinutes() + ':' + now.getSeconds()};
template = mustache.render(template, dataToShow);
res.send(template);
})
在我的 HTML 页面中,我有以下内容:
<p>{{cookie_data}}</p>
我希望有一个视图而不是 html 代码
【问题讨论】:
标签: node.js express mustache template-engine