node.js - express-handlebars如何向模板传全局变量?

查看:122
本文介绍了node.js - express-handlebars如何向模板传全局变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

学习express.js中,使用了express-handlebars引擎,现在想向模板里传一些全局变量,看了
npm里 express-handlebars 的文档发现一些相关信息:

Metadata Handlebars has a data channel feature that propagates data
through all scopes, including helpers and partials. Values in the data
channel can be accessed via the {{@variable}} syntax. Express
Handlebars provides metadata about a template it renders on a
{{@exphbs}} object allowing access to things like the view name passed
to res.render() via {{@exphbs.view}}.

The following is the list of metadata that's accessible on the
{{@exphbs}} data object:

cache: Boolean whether or not the template is cached.
view: String name of the view passed to res.render().
layout: String name of the layout view.
data: Original data object passed when rendering the template.
helpers: Collection of helpers used when rendering the template.
partials: Collection of partials used when rendering the template.

想请教一下,这个用法是怎样的?或者有别的方式?十分感谢!

解决方案

实话说,metadata这段我没怎么看懂。不过设置全局变量我倒是知道一点点:

var app = express();

//设置全局变量sayHi
app.locals.sayHi = 'Hello World!';

app.engine('handlebars', exphbs({defaultLayout: 'main'}));
app.set('view engine', 'handlebars');

app.get('/', function(req, res) {
    res.render('home');
});

<h1>Example App: Home</h1>
<p>
    {{sayHi}}
</p>

这里使用sayHi变量

这篇关于node.js - express-handlebars如何向模板传全局变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆