如何访问通过res.renderer传递的变量?

How to access the variable passed through res.renderer?

我在 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} 你的情况。