问题描述
我将一个变量传递给 Expressjs 中的模板渲染器,如下所示:
index.js
app.get('/simple_view/',function(req,res,next){
title='A TITLE';
res.render('simple',{
title: title
});
});
我想访问模板页面上 JS 脚本中的 title 变量,但出现 Uncaught ReferenceError: title is not defined
错误。
simple.pug
script.
console.log(title);
我该如何解决这个问题?
解决方法
PUG 的 Getting Started 已经展示了如何嵌入变量。您可以通过使用 #{variable_name}
来做到这一点,例如#{title}
在您的情况下。