Authored by xuqi

修正Hbs文档

... ... @@ -147,7 +147,7 @@ each可选择性插入{{else}}, 在遍历的list为**空**(遍历对象为非
3. {{#unless condition}} inverse of the `if` helper
4. {{with ctx}}
4. {{#with ctx}}
与Js的with一样,改变当前context,可以避免含有深层次嵌套属性时重复书写父级的名字
//tpl
... ... @@ -226,7 +226,7 @@ Handlebars.registerPartial('parName', 'parContent'); 注册一个Partials;
{{#each sub}}
{{@root.someAttr}}
{{/each sub}}
{{/each}}
### Comments
{{!-- --}}和{{! }}不会将注释内容输出到HTML中,如果想输出注释到HTML中可以使用HTML的注释语法`<!-- -->`。另外,如果注释中有`}}`,则必须使用{{!-- --}}。
... ...