ExtJS Ext.Ajax.request最好设为同步

前端之家收集整理的这篇文章主要介绍了ExtJS Ext.Ajax.request最好设为同步前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
ExtJS 中Ext.Ajax.request最好设为同步,即async: false,因为如果Ajax后面需要用到Ajax更新的数据的话,设置同步,后面才能用到最新的数据。
function GetPatientOrder() {
    Ext.Ajax.request({
        url: '/CommonAshx/Order.ashx',method: 'get',async: false,params: {
            gurd: "GetOrder",patientCardNo: Ext.getCmp("CardNo").value
        },success: function (response,options) {
            var responseJson = Ext.decode(response.responseText);
            docAdGrid.store.loadData(responseJson.rows);
        },failure: function () {
            Ext.Msg.alert("错误","与后台联系的时候出了问题。");
        }
    });
}
原文链接:https://www.f2er.com/ajax/162357.html

猜你在找的Ajax相关文章