ajax中get和post的封装

在使用ajax处理数据时,我们最常用的就是post和get,这里就进行一个简单的封装,以便使用,代码如下:

function ajax(ops){
    // 先处理默认属性
    ops.type = ops.type || "get";
    ops.data = ops.data || "";
    // 根据当前的请求方式,决定是否需要拼接数据,处理url
    ops.url = ops.type=="get" ? ops.url + "?" + ops.data : ops.url;
    // if(ops.type=="get"){
    //     ops.url = ops.url+ops.data
    // }
    // 创建xhr对象
    var xhr = new XMLHttpRequest();
    // 开启请求
    xhr.open(ops.type, ops.url);
    // 根据类型决定send的内容及内容数据格式
    if(ops.type == "get"){
        xhr.send();
    }else{
        xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
        xhr.send(ops.data);
    }
    // 开启监听
    xhr.onreadystatechange = function(){
        if(xhr.readyState === 4 && xhr.status === 200){
            // 执行回调函数,取出数据
            ops.success(xhr.responseText);
        }
    }
}
发布了19 篇原创文章 · 获赞 63 · 访问量 7391

猜你喜欢

转载自blog.csdn.net/ephemeral0/article/details/104808803
今日推荐