我在Sencha Touch v2控制器中有一段代码,如下所示。当运行此代码时,store.add之后的计数为(6),store.sync之后的计数器为(0)且store.sync正在成功。
注意:项目包含从JsonP代理收到的6条记录,控制台中没有显示任何错误,一切都表现得非常成功。
requires: [
'Ext.data.proxy.JsonP',
'Ext.data.proxy.Sql'
],
config: {
models: ['Convention'],
stores: ['Conventions']
},
// ***additional code*** //
store.setProxy({
type: 'sql',
database: 'app',
table: 'Conventions'
});
store.removeAll();
store.sync({
success: function(batch){
store.add(items);
console.log("Count before: " + store.getCount()); << Shows (6)
store.sync({
failure: function (batch, options) {
console.log('Convention Sql failure');
},
success: function(batch,options){
console.log("Count after: " + store.getCount()); << Shows (0)
console.log("Convention Sql success");
store.load();
Ext.Viewport.unmask();
}
});
}
});
模型显示在这里
extend: 'Ext.data.Model',
config: {
idProperty: 'id',
fields: [
{ name: 'id', type: 'string' },
{ name: 'name', type: 'string' },
{ name: 'logoId', type: 'string' },
{ name: 'seasonId', type: 'string'},
{ name: 'viewed', type: 'string'},
{ name: 'dateCreated', type: 'string'},
{ name: 'dateUpdated', type: 'string'}
]
}
并且商店在这里
extend: 'Ext.data.Store',
requires: [
'Ext.data.proxy.Sql'
],
config: {
model: 'app.model.Convention',
autoLoad: false,
sorters:[{
property: 'name',
direction: 'ASC'
}],
proxy: {
type: 'sql',
database: 'app',
table: 'Conventions'
}
}
答案 0 :(得分:0)
经过大量研究后,Sencha最近似乎改变了他们处理ID的方式。因此,如果您使用此更改之前的代码示例,则在尝试保存到ID字段时会出现错误。
Sencha添加了clientIdProperty,您可以将其添加到代理的编写器并直接添加到模型中。
参考:http://docs.sencha.com/touch/2.4/2.4.2-apidocs/#!/api/Ext.data.Model-cfg-clientIdProperty
当多个幻像记录作为同一操作的一部分保存时,用于向服务器提交此模型的唯一客户端标识符的属性的名称。在这种情况下,服务器响应应包括每条记录的客户机ID,以便服务器响应数据可用于在必要时更新客户端记录。此属性不能与此模型的任何字段具有相同的名称。
因此,我上面的代码将对以下内容进行以下更改,其中&#39; siteId&#39;是我的ID从Json请求和我服务器上的ID传递给记录。
模型
idProperty: 'id',
clientIdProperty: 'siteId',
identifier: 'uuid',
控制器
store.setProxy({
type: 'sql',
database: 'app',
table: 'Conventions',
writer: {
clientIdProperty: 'siteId'
}
});