在 XTemplate 的文档中,{#} 可用于获取当前数组索引。
当我在 xlist 的 itemTpl 中使用它时,我总是得到 1 而不是索引:
{
xtype: 'list',
store: 'myStore',
itemTpl:new Ext.XTemplate(
'<tpl for=".">',
'<div>Item n°{#1}</div>',
'</tpl>'
),
}
即使我的商店包含多件商品,也始终会生成“Item n°1”。
难道我做错了什么 ?