首页 > 代码库 > Ajax请求GET方法的封装

Ajax请求GET方法的封装

function get(url, options, callback){                                        //定义get函数

  if(XMLHttpRequest){

    var xhr=new XMLHttpRequest();

  }else{

    var xhr=new ActiveXObject("Microsoft.XMLHTTP"); //兼容ie

  }


  xhr .onreadystatechange = function(callback) {

    if(xhr .readyState === 4){

      if((xhr.status >= 200 && xhr.status < 300) || xhr.status === 304){

        callback(xhr.responseText);

      }else{

        alert("请求未成功:" + xhr .status )

      }

    }

  }

  var seriUrl = url + ‘?‘ + serialize(options);

  xhr .open(‘get‘,seriUrl, true);

  xhr .send(null);
}


function serialize(data){

  if(!data) return ‘‘;

  var pairs = [], value;

  for(name in data){                                                       //遍历对象属性

    if(!data.hasOwnProperty(name)) continue;        //过滤掉继承原型的属性和方法

    if(typeof data[name] === ‘function‘) continue; //过滤掉函数方法

    value = http://www.mamicode.com/data[name].toString(); //属性值转为字符串

    name = encodeURIComponent(name);              //可把属性名称字符串作为URI 组件进行编码。返回值URIstring 的副本,其中的某些字符将被十六进制的转义序列进行替换。

    value = http://www.mamicode.com/encodeURIComponent(value); //属性值进行URI编码。

    pairs.push(name + ‘=‘ + value);                          //属性名和值放入数组

  }

  return pairs.join(‘&‘);                                                 //将数组中的元素用&分隔开返回成字符串形式

}


get(‘/information‘, {name: ‘netease‘, age: 18}, function (data) {

  console.log(data);

  // 处理返回数据

});

Ajax请求GET方法的封装