我想创建一个包含商店和模型的嵌套列表。我的商店在不同的文件中,我的 model.js 也是如此。
当心我正在使用 amfPHP => 2 !
当我将我的商店“eventStore”称为“商店:App.stores.eventStore”时,我收到以下错误:
未捕获的类型错误:无法读取未定义的属性“eventStore”
我的商店的代码是这样的:
App.stores.eventStore = new Ext.data.TreeStore({
model: 'Events',
proxy: {
type: 'ajax',
params: JSON.stringify(
{serviceName: 'EventService',
methodName: 'getEvents'}),
url: 'http://localhost/amfphp/Amfphp/?contentType=application/json',
reader: {
type: 'tree',
root: 'items'
}
}
});
知道我的错误是什么吗?
(EventService.php运行正常,在amfphp的网关浏览器中测试)
提前谢谢!