Ext-ajax 요청 데이터

1360 단어

 
Ext.Ajax.request({
            url: webPath+'/news/newsEastmoneyList',
            method: 'POST',
            success: function (response, options) {
                var data = Ext.decode(response.responseText);
                if(data.success){
                    list.getStore().load({page:1});
                    Ext.Msg.alert(' ',' , '+data.zg+' .');
                }else{
                    Ext.Msg.alert(' ',data.error);
                }
            },
            failure: function (response, options) {
                Ext.Msg.alert(' ',' , ');
            }
        });

 
다음으로 전송:https://www.cnblogs.com/hwaggLee/p/4745215.html

좋은 웹페이지 즐겨찾기