2012-02-18 45 views
1

我有建設使用extjs的web應用程序的問題。 我有這樣的代碼: The Code獲取錯誤Uncaught TypeError:無法調用未定義的方法'getProxy'?

確定我得到的錯誤是這樣的: 遺漏的類型錯誤:無法調用未定義 這個堆棧跟蹤方法「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 
+0

錯字? store:storge, – 2012-02-19 07:56:01

+0

固定我只是重新加載文件不知道爲什麼發生,但它的工作:) – 2012-02-20 09:34:09

回答

2

STORGE是一個函數,它需要執行以返回商店。 嘗試store: storge(),

0

在你snippet,如果刪除1號線,17和18的整體,然後換行34:

store : store,

你的代碼將正常工作。

相關問題