Extjs6 設定Store、Ajax、form的請求方式(GET、POST)__JSP

來源:互聯網
上載者:User

Ajax請求和Form的submit方法佈建要求方式和原來一樣,使用method : 'POST'設定

// 表單提交winForm.getForm().submit({waitTitle : '提示',// 標題waitMsg : '正在提交資料請稍後...',// 提示資訊url : '../../../dayReportController/add.do',method : 'POST',params : { // 此處可以添加額外參數extraParems : 'extraParems'},success : function(form, action) {/* * 第二種方法擷取傳回值var success = action.result.success;alert(success);*/var respText = Ext.util.JSON.decode(action.response.responseText)if (respText.success == true) {Ext.Msg.alert('訊息', '儲存成功。');Ext.getCmp('win').close();// 添加成功後關閉視窗Ext.getCmp('menuGrid').getStore().reload(); // 添加成功後重新重新整理表格} else {Ext.Msg.alert('訊息', respText.msg);}},failure : function(form, action) {Ext.Msg.alert("訊息", "操作失敗!");}});


Ext.Ajax.request({method : 'POST',url : '../../../dayReportController/deleteMenu.do',params : {'id' : id // 要刪除記錄的id},success : function(response, config) {/*// 後台:out.print(1);var result = response.responseText;if (parseInt(result) == 1) {Ext.getCmp('menuGrid').getStore().reload();Ext.Msg.alert("提示", '刪除成功!');} else {Ext.Msg.alert('提示', '刪除失敗!');}*/// 後台:out.print({success : true});var json = Ext.util.JSON.decode(response.responseText);if (json.success == true) {Ext.getCmp('menuGrid').getStore().reload();Ext.Msg.alert("提示", '刪除成功!');} else {Ext.Msg.alert('提示', '刪除失敗!');}},failure : function() {Ext.Msg.alert('提示', '刪除失敗!');}});


Store佈建要求方式使用actionMethods : {

                                                                read : 'POST'

                                      }


    var store = Ext.create('Ext.data.Store', {// autoLoad : true,pageSize : main.gridPageSize,fields : ['id', 'text', 'description', 'url', 'leaf'],proxy : new Ext.data.HttpProxy({type : 'ajax',url : '../../../dayReportController/test.do',actionMethods : {read : 'POST' // Store佈建要求的方法,與Ajax請求有區別},reader : new Ext.data.JsonReader({type : 'json',rootProperty : 'data',// 資料(不配置的話無法接收資料),返回的key為datatotalProperty : 'totalRecord'// 記錄數(不配置的話無法翻頁),返回的key為totalRecord})})});


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.