0
我在學習如何在Ext JS中使用localStorage。這裏是我的模型:在Ext JS中使用LocalStorage
Ext.define('DEMO.model.UserPreference', {
...
proxy: {
type: 'localStorage',
id: 'userpreference'
}
})
然後,對於測試的目的,發射功能裏面,我這樣做:
var store = Ext.create('Demo.store.UserPreferenceStore');
(我有合適的店面)
但是當我運行應用程序,我得到這個錯誤:
http:.../proxy/localStorage.js not found
Failed loading synchronously via XHR: 'proxy/localStorage.js'
但在教程中沒有提到localStorage.js文件。
你能幫我解決問題嗎?
謝謝
更改您的代理類型「localStorage」爲「localstorage」 –
:)))謝謝!有效 – codeRecap