点击(此处)折叠或打开
- Ext.Ajax.request({
- url:'demo.json',//ajax请求的url
- success:function(response,opts){//当HTTP响应200就ok,就会调用success回调函数
- var obj = Ext.decode(response.responseTest);//decode http响应文本,一般是json字符串
- console.dir(obj);
- },
- failure:function(response,opts){//当请求失败,执行该函数
- console.log('server-side failure with status code'+response.status);
- }
- });
点击(此处)折叠或打开
- /* 以post方式请求,将响应的结果显示在id为result的div中 */
- $.ajax({
- url: "test.php",
- type: "post",
- data: values,
- success: function(){
- alert("success");
- $("#result").html('submitted successfully');
- },
- error:function(){
- alert("failure");
- $("#result").html('there is error while submit');
- }
- })
使用XMLHttpRequest对象发送请求的基本步骤如下:
创建一个XMLHttpRequest的引用
告诉XMLHttpRequest对象,哪个函数会处理XMLHttpRequest对象状态的改变,为此要设置onreadystatechange属性
指定请求的属性。open()
将请求发送给服务器。send()
xmlHttp.responseText将响应提供为一个串
点击(此处)折叠或打开
- var xmlHttp;
- //创建一个XMLHttpRequest对象
- function createXMLHttpRequest()
- {
- if(window.ActiveXObject)
- {
- xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
- }
- else if(window.XMLHttpRequest)
- {
- xmlHttp = new XMLHttpRequest();
- }
- }
-
- //开始一个请求
- function startRequest()
- {
- createXMLHttpRequest();
- xmlHttp.onreadystatechange = handleStateChange;
- xmlHttp.open("GET","simpleResponse.xml",true);
- xmlHttp.send(null);
- }
-
- //当xmlHttp对象的内部状态发生变化时候,调用此处理函数
- //一旦接受到相应(readyState为4)
- function handleStateChange()
- {
- if(xmlHttp.readyState == 4)
- {
- if(xmlHttp.status == 200)
- {
- alert("The server replied with:"+xmlHttp.responseText);
- document.getElementById("result").innerHTML = xmlHttp.responseText;
- }
- }
- }