我有模型:
Ext.define('SizoMag.model.SizoBuscetModel', { extend: 'Ext.data.Model',
config: {
fields: [{name: 'text', type: 'string'}, {name: 'price', type: 'string'}],
proxy: {
type: 'localstorage',
id : 'buscetmodel'
}
}
});
并存储
Ext.define('SizoMag.store.SizoBuscetStore', {extend: 'Ext.data.Store',
config: {
storeId: 'SizoBuscetStore'
}
});
但是当我尝试向商店添加条目时 - 出现错误 [WARN][Ext.data.Operation#setModel] 除非您使用元数据定义模型,否则操作需要定义模型。Console.js:35
[WARN][Ext.data.reader.Reader#process] 为了读取记录数据,Reader 需要在其上定义一个模型。Console.js:35
未捕获的类型错误:对象不是函数
我这样补充
var store=Ext.getStore('SizoBuscetStore');
store.load();store.add({text:'txt',price:'150'});
store.sync();
请帮帮我/Tnx