我们在nodejs应用程序中使用marko模板引擎。我们有3个Marko布局
标头
layout.marko
页脚标记
页眉和页脚布局呈现在layout.marko内部
每当我们创建新的Marko页面(内容页面)时,我们都使用这样的布局Marko
<layout-use template="./../layout.marko">
并像这样加载marko
this.body = marko.load("./views/home.marko").stream(data);
现在,我们要全局访问一个变量。即,如果我们有一个变量username ='abc'。我们要访问此名称并将其显示在header,layout或footer marko文件中。但是我们不想为每个内容标记页面传递用户名。即,如果我们网站上有100个页面,则我们不想为所有100个页面传递用户名。每当用户登录时,将用户名保存在全局变量中,然后在所有页面中使用该全局变量。
我们如何实现这种全局变量功能。
最佳答案
看起来您可以使用$global属性公开数据
用于所有模板。
例如:
router.get('/test', function * () {
this.type = 'html'
this.body = marko.load("./views/home.marko")
.stream({
color: 'red',
$global: {
currUser: { id: 2, username: 'hansel' }
}
})
})
然后这些模板:
// home.marko
<include('./header.marko') />
<h1>color is ${data.color}</h1>
// header.marko
<h2>Header</h2>
<p if(out.global.currUser)>
Logged in as ${out.global.currUser.username}
</p>
<p else>
Not logged in
</p>
这样可行。
但是显然,您不想将
$global
传递给每个
.stream()
,所以一个想法是将其存储在Koa上下文中,让任何中间件都将数据附加到它,然后编写一个将其传递到的帮助器
我们的模板。
// initialize the object early so other middleware can use it
// and define a helper, this.stream(templatePath, data) that will
// pass $global in for us
router.use(function * (next) {
this.global = {}
this.stream = function (path, data) {
data.$global = this.global
return marko.load(path).stream(data)
}
yield next
})
// here is an example of middleware that might load a current user
// from the database and attach it for all templates to access
router.use(function * (next) {
this.global.currUser = {
id: 2,
username: 'hansel'
}
yield next
})
// now in our route we can call the helper we defined,
// and pass any additional data
router.get('/test', function * () {
this.type = 'html'
this.body = this.stream('./views/home.marko', {
color: red
})
})
该代码适用于我上面定义的模板:
${out.global.currUser}
可从header.marko访问,而
${data.color}
可从header.marko访问home.marko。
我从没使用过Marko,但我很好奇,看过之后会阅读文档
您的问题,因为我一直在考虑使用它。我没有感觉
像弄清楚
<layout-use>
的工作原理,所以我改用<include>
。关于layout - 在marko模板中全局访问变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40046904/