获取错误未捕获TypeError:无法调用方法' getProxy'未定义?

时间:2012-02-18 22:42:17

标签: javascript extjs extjs4 extjs-mvc

我在构建使用extjs的web应用程序有问题。 我有这个代码: The Code

确定我得到的错误是这样的: 未捕获的TypeError:无法调用未定义的方法'getProxy' 这是堆栈跟踪:

Uncaught TypeError: Cannot call method 'getProxy' of undefined
Ext.define.constructorext-all-debug.js:44348
Base.callParentext-all-debug.js:2891
Ext.define.constructorext-all-debug.js:44877
Ext.Class.newClassext-all-debug.js:3188
(anonymous function)
Ext.ClassManager.instantiateext-all-debug.js:3948
Ext.ClassManager.instantiateByAliasext-all-debug.js:3898
(anonymous function)ext-all-debug.js:1555
Ext.define.statics.createext-all-debug.js:44241
Ext.define.lookupext-all-debug.js:26969
Ext.define.bindStoreext-all-debug.js:70975
Ext.define.initComponentext-all-debug.js:70756
Ext.define.constructorext-all-debug.js:15614
Base.callParentext-all-debug.js:2891
Ext.define.constructorext-all-debug.js:27103
Ext.Class.newClassext-all-debug.js:3188
(anonymous function)
Ext.ClassManager.instantiateext-all-debug.js:3948
(anonymous function)ext-all-debug.js:1555
(anonymous function)PageList.js:35

2 个答案:

答案 0 :(得分:2)

storge是一个函数,需要执行才能返回商店。 试试store: storge(),

答案 1 :(得分:0)

snippet中,如果删除第1行,第17行和第18行的全部内容,请将第34行更改为:

store : store,

您的代码可以正常运行。