使用Ext2.0的Ajax连接ArcIMS例子

例子:使用XHR对象和Ext2.0的Ajax对象给一个ArcIMS服务器发送请求,并返回结果。

var axl = '<?xml version="1.0" encoding="UTF-8"?>/n<ARCXML version="1.1">/n<REQUEST>/n<GET_SERVICE_INFO renderer="false" extensions="false" fields="false" />/n</REQUEST>/n</ARCXML>/n';

var url='http://www.studioat.it/servlet/com.esri.esrimap.Esrimap?ServiceName=ComuneGarzeno&Form=False&ClientVersion=4.0';
 

//XHR例子
var http;

Ext.get('oKButton2').on('click', function(){
     http = getHTTPObject();
     if ((http != null)) {
          http.open("POST", urls, true); 
          http.onreadystatechange = parseLayers;//IMS服务信息将由parseLayers解析
          http.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
          http.send(axl); 
     }
});

function parseLayers(){
     if (http.readyState == 4) {
          if (http.status == 200) { 
              var result = http.responseText;
             alert(result);//一切正常 
         } else alert("Error retreiving data");
    }
}

function getHTTPObject() {
      var xmlhttp;
       //MOZILLA FireFox
      if (window.XMLHttpRequest) { 
             xmlhttp = new XMLHttpRequest(); 
      //IE
} else if (window.ActiveXObject) { 
         var aVersions =['MSXML2.XMLHttp.5.0','MSXML2.XMLHttp.4.0','MSXML2.XMLHttp.3.0','MSXML2.XMLHttp','Microsoft.XMLHTTP'];
       for(var i=0;i<aVersions.length;i++){
    try{ 
           xmlhttp = new ActiveXObject(aVersions[i]);
     }catch(e){}
  }
}
return xmlhttp;
}


但使用Ext2.0的AJAX方法:
Ext.get('oKButton').on('click', function(){
Ext.Ajax.request({
url :urls,
headers:{'Content-Type' : 'text/xml'},
params :axl,
method: 'post',
//xmlData:axl,也可以
success: function ( result, request ) {
alert(result.responseText);
},
failure: function ( result, request) {
Ext.MessageBox.alert('Failed', 'Successfully posted form:');
}
});
}); 
 

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值