我使用了如下列表。
xtype: 'list',
layout: 'fit',
activeItem: 0,
store: {
fields:['imageUrl','name','status'],
data: [{
imageUrl: 'arrow.png',
name:'IMG23',
status:'p'
}, {
imageUrl: 'arrow2.png',
name: 'IMG20',
status: 'P'
}]
},
现在我想将imageUrl的值存储在变量中。
我正在使用var URL = {imageUrl[0]};
,但它无效。
答案 0 :(得分:0)
假设变量store
引用您的商店,您可以执行此操作
variable URL = store.getAt(0).get('imageUrl')
查看手册: http://docs.sencha.com/extjs/4.2.2/?mobile=/api/Ext.data.Store#method-getAt