0
嗨我遇到了一個奇怪的行爲與我的應用程序:當我修改一個項目,然後我的代理doas一個放置請求,第一次是好的,第二次它發送兩個請求:第一個與上一個的數據,第二個與實際數據,第三次發送三個請求,在我的系統上,這不是一個大問題,因爲最後我在我的數據庫上得到正確的值,但在我的客戶系統上結果並不總是正確的。然後我想刪除這種行爲。extjs4代理休息多個請求問題
這是我的店:
Ext.create('Ext.data.Store',
{
storeId: 'bbCompaniesStore',
model:'Company',
pageSize: pageSize,
proxy:
{
idProperty : '_id',
type: 'rest',
url: 'data/companies/',
autoload: true,
noCache: true,
sortParam: undefined,
actionMethods:
{
create : 'PUT',
read : 'GET',
update : 'POST',
destroy: 'DELETE'
},
reader:
{
type: 'json',
root: 'data',
totalProperty: 'total'
},
},// proxy
listeners: {
exception: function(proxy, response, operation) {
Ext.gritter.add({
title: MongoVision.text['action.' + operation.action] || operation.action,
text: (operation.error ? operation.error.statusText : null) || MongoVision.text.exception
});
// Ext JS 4.0 does not handle this exception!
switch (operation.action) {
case 'create':
Ext.each(operation.records, function(record) {
record.store.remove(record);
});
break;
case 'destroy':
Ext.each(operation.records, function(record) {
if (record.removeStore) {
record.removeStore.insert(record.removeIndex, record);
}
});
break;
}
}
}
}
);
這是我的模型:
Ext.define('Company',
{
extend: 'Ext.data.Model',
fields: [
{
name : 'id',
type : 'string'
},
{
name :'firm',
type : 'string',
allowBlank: false
},{
name : 'p'
},
{
name: 'linee'
},
{
name : 'c'
},
{
name : 'data',
type: 'date'
},
{
name :'note'
},
{
name :'paese'
},
{
name : 'email'
},
{
name : 'telefono'
},
{
name : 'type'
},
{
name : 'website'
},
{
name : 'session_id'
},
{
name : 'group_id'
}
],
proxy : {
type : 'rest',
url : 'data/companies/'
}
}
);
周圍的Googling後,我發現extjs3一個類似的問題,沒有解決方案,我認爲這是奇怪的是,之後很長一段時間,還沒有解決辦法;它應該現在工作
你如何持續模型?使用store.sync()? – existdissolve
謝謝,我用Ext.ModelManager.create然後model.save創建一個模型,但現在我認爲問題與我用於更新的Ext.grid.plugin.RowEditing有關,我在開始之前使用rowEditing.cancelEdit()編輯,所以我不知道 – arpho
你可以發佈你的控制器的代碼,你在做什麼節省? – existdissolve