我有一个MVC应用程序。其中一个商店的定义如下:
Ext.define('Instructions.store.InstructionsObjectTreeStore', {
extend: 'Ext.data.TreeStore',
requires: ['Instructions.model.InstructionsObjectTreeModel'],
model: 'Instructions.model.InstructionsObjectTreeModel',
autoLoad: false,
proxy: {
type: 'ajax',
url: 'controller/InstructionsHandler.php',
node: 'id',
extraParams: {
action: 'getInstructionsObjectTree'
}
},
root: {
text: 'Objects',
id: 'src',
root: true,
expanded: true
}
});
但是,就我在控制台中看到的而言,autoLoad
被忽略了。我也尝试过使用旧建议
root:{
loaded: true
}
在我的treepanel定义中,但它也没有帮助。那么,如何修复呢?