我不是Ext JS的新手,我正在使用Ext JS 4.我正在实现一个树,其中数据应该动态加载。为此,我使用Ajax返回JSON响应。
Model :
Ext.define('sgd.monitoring.model.MonitoringModel', {
extend : 'Ext.data.Model',
xtype : 'basic-trees',
fields : [ {
name : 'Name',
type : 'string'
} ]
});
Ajax response : {success: true,children:[{'Name':'Praveen'}]}
Store :
Ext.define('sgd.monitoring.store.MonitoringStore', {
extend : 'Ext.data.TreeStore',
model : 'sgd.monitoring.model.MonitoringModel',
autoLoad:true,
pageSize : 1000,
proxy : {
type : 'rest',
url : '/api/tree',
reader : {
type : 'json'
//root : 'data'
}
}
});
Firebug控制台出错:
"NetworkError: 404 Not Found - http://x.x.x.:8080/api/tree/root?_dc=1383458930310&node=root"
请帮我确定上述代码有什么问题。