Express+jade: local variable not available in view

不羁的心 提交于 2019-12-05 11:45:46

问题


I ran into a very basic problem but I can't seem to find the answer to it. I am working with node.js, express and I am just trying to pass a local variable into the view like this:

 app.get('/', function(req, res){
  res.render("index", {locals: {
    title: "Blog",
    }
  });
});

My index view is equally simple:

h1= title

But for some reason, I keep getting this error as if the local variable is never passed:

 500 ReferenceError: /home/spartan/Node_Projects/test/views/index.jade:1 > 1| h1= title 2| title is not defined
> 1| h1= title
  2| title is not defined

I don't know what I am doing wrong! Here are the versions I am using:

  • Express: 3.0.0alpha1
  • node.JS: 0.6.14
  • Jade: 0.24.0

Someone please help so I can actually move on to learning node + express!


回答1:


You should pass the variable without the locals. This is probably new in express 3.0.0

res.render("index", {title: "Blog"});



回答2:


h1 = title tries to evaluate it locally, the title you sent and that one is different. To understand the difference see:

- var title = 'my title' // - allows writing code
h1 = title

The one you should use is:

h1 #{title}



回答3:


Here is a response that I made few hours ago to a smiliar question (+ deal with layout). It shows how to pass data when rendering. (Express 3.0.0 complient)



来源:https://stackoverflow.com/questions/10199400/expressjade-local-variable-not-available-in-view

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!