对于车把(版本 1.0.0-rc.3)模板,我传递了两个变量,一个是 json,另一个是包含现场当前语言的字符串。
self.template = template({ data: self.model, lang:self.lang });
然后在模板文件中我有以下结构:
{{#each data}}
//this is working
{{../lang}}
{{#if this.title}}
{{this.desc}}
//i've tried this
{{../lang}}
//and this
{{lang}}
{{/if}}
{{/each}}
...但我无法访问 if 语句中的 lang 值。我究竟做错了什么?