假设我有以下JSON和handlebars.js模板:
{
rootPath: '/some/path/',
items:[ {
title: 'Hello World',
href: 'hello-world'
}, {
title: 'About',
href: 'about'
}, {
title: 'Latest News',
href: 'latest-news'
}
}
<script id="test-template" type="text/x-handlebars-template">
<ul class="nav">
{{#each items}}
<li><a href="{{../rootPath}}{{href}}">{{title}}</a></li>
{{/each}}
</ul>
</script>
上面的模板有效,直到我想要过滤项目 - 假设有两个列表一个奇数,另一个是偶数,这里是一个奇怪的简单模板:
<script id="test-template" type="text/x-handlebars-template">
<ul class="nav">
{{#each items}}
{{#isOdd @index}}
<li><a href="{{../rootPath}}{{href}}">{{title}}</a></li>
{{/isOdd}}
{{/each}}
</ul>
</script>
注册助手:
// isOdd, helper to identify Odd items
Handlebars.registerHelper('isOdd', function (rawValue, options) {
if (+rawValue % 2) {
return options.fn(this);
} else {
return options.inverse(this);
}
});
帮助程序按预期工作,只渲染Odd项,但是对父上下文的引用会丢失,因此{{../rootPath}}
指令~~无法呈现~~呈现空值。
有没有办法通过块Helper传递Parent上下文?
答案 0 :(得分:42)
修改
<a href="{{../rootPath}}{{href}}"> to this:
<a href="{{../../rootPath}}{{href}}">
为什么呢?因为if语句在内部上下文中所以首先你需要上升一个级别,这就是为什么你必须添加../