Handlebars.net 使用索引器访问集合
Handlebars.net Accessing collections with indexers
在handlebars.net中,我知道我们可以像
一样访问数组成员
{{SomeArray.0}}
是否可以通过像
这样的索引器访问集合项
{{SomeCollectionInstance['key']}}
或
{{SomeCollectionInstance.key}}
如果不可能,谁能提出一种实现方法,至少对于字符串和数字索引器?
对于字典和对象,支持 .keyName
或 .propertyName
符号。
您还可以使用 .[key name]
或 .[property name]
(方括号)- 这对于 属性 名称中包含奇怪字符的情况很有用,例如 space.
在handlebars.net中,我知道我们可以像
一样访问数组成员{{SomeArray.0}}
是否可以通过像
这样的索引器访问集合项{{SomeCollectionInstance['key']}}
或
{{SomeCollectionInstance.key}}
如果不可能,谁能提出一种实现方法,至少对于字符串和数字索引器?
对于字典和对象,支持 .keyName
或 .propertyName
符号。
您还可以使用 .[key name]
或 .[property name]
(方括号)- 这对于 属性 名称中包含奇怪字符的情况很有用,例如 space.