0
我已經創建了一個編輯器網格面板,我已經編輯了數據,並且將修改過的記錄存儲在數組中,如何將這些記錄傳遞給jsp頁面以更新數據庫如何通過網格商店的修改recors到jsp頁面在extjs
function modifycheckpoints(){
var updateddata =new Array();
updateddata.push(checkpoint.getModifiedRecords());
Ext.Ajax.request({
url: 'update_checklist.jsp',
params: {
updatedcheckpoint: updateddata
},
success: function(response){
Ext.Msg.alert("Result","Data modified successfully");
checkpoint.reload();
},
failure: function(response){
Ext.MessageBox.alert('Error','could not connect to the database. retry later');
}
});
}
});
我已經試過這樣的,但我不是在jsp頁面中獲取數據 能幫我