EXTJs前後台互動

來源:互聯網
上載者:User

print?<1>Ajax互動方式 
Ext.Ajax.request(  
    { 
        //被用來向伺服器發起請求預設的url  
        url : "", 
        //請求時發送背景參數,既可以是Json對象,也可以直接使用“name = value”形式的字串  
        params : { 
            name:'value' 
        }, 
        //請求時使用的預設的http方法  
        method : "post", 
        //請求成功時回呼函數  
        success : function() { 
            Ext.ux.Toast.msg("資訊提示", "成功刪除所選記錄!"); 
        }, 
        //請求失敗時回呼函數  
        failure : function() { 
            Ext.ux.Toast.msg("資訊提示", "資訊刪除出錯,請聯絡管理員!"); 
        } 
    } 
); 
<2>Form互動方式 
this.formPanel = new Ext.FormPanel( 
    { 
        url : "" 
    } 
); 
//提交資料  
formPanel.getForm().submit( 
    { 
        method : "post", 
        params : { 
            name:'value' 
        }, 
        waitMsg : "正在提交資料", 
        success : function(b, c) { 
            Ext.ux.Toast.msg("操作資訊", "提交成功!"); 
        }, 
        failure : function(b, c) { 
            Ext.ux.Toast.msg("操作資訊", "提交失敗!"); 
        } 
    } 
); 
//載入資料  
formPanel.getForm().load( 
    { 
        deferreRender : false, 
        url : "", 
        method : "post", 
        waitMsg : "正在載入資料", 
        success : function(e, g) { 
            var num = g.result.data.num; 
            var numCmp = Ext.getCmp("num"); 
            numCmp.setValue(num); 
            Ext.ux.Toast.msg("操作資訊", "載入成功"); 
        }, 
        failure : function(a, b) { 
            Ext.ux.Toast.msg("操作資訊", "載入失敗"); 
        } 
    } 
); 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.