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