只是试图让一个面板充满一个从商店填充自己的列表。我得到的只是一个空白窗口。它甚至没有在 Chrome 的网络窗口中发送 HTTP 请求。
列表:
myapp.companies_list = {
fullscreen: true,
title: 'Companies',
iconCls: 'info',
xtype: 'list',
itemTpl: '{name}',
store: {
fields: ['name'],
autoload: true,
proxy: {
type: 'jsonp',
url: base_url+'/index.php/mobile/companies',
reader: {
type: 'json',
rootProperty: 'companies'
}
}
},
listeners:{
initialize: function(){
this.getStore().load();
}
}
}
如果没有听众,这将无法工作。为什么?