封装ajax的get和post函数,以及合并封装

2 篇文章 0 订阅
1 篇文章 0 订阅

1.ajax的get函数封装:

 function ajaxGet(url,cb){
        var xhr = new XMLHttpRequest();
        xhr.open("GET",url);
        xhr.send();
        xhr.onreadystatechange = function(){
            if(xhr.readyState === 4 && xhr.status === 200){
                cb(xhr.responseText);
            }
        }
    }

2.ajax的post函数封装:

function ajaxPost(url,cb,data){
        var xhr = new XMLHttpRequest();
        xhr.open("POST",url);
        xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
        xhr.send(data);
        xhr.onreadystatechange = function(){
            if(xhr.readyState === 4 && xhr.status === 200){
                cb(xhr.responseText);
            }
        }
    }

3.合并封装:


    document.onclick = function(){
        var url = "http://localhost/webRoot/ajax/data/get-post.php";//这是你根目录下的文件夹
        ajax({
            success:function(res){
                console.log(res);
            },
            url:url,
            type:"get",
            data:"user=admin&pass=123"
        });
    }
    function ajax(ops){
        ops.type = ops.type || "get";
        ops.data = ops.data || "";
        ops.url = ops.type=="get" ? ops.url + "?" + ops.data : ops.url;
        var xhr = new XMLHttpRequest();
        xhr.open(ops.type, ops.url);
        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);
            }
        }
    }

 get-post.php里面的内容如下:

<?php

    $u = $_REQUEST["user"];
    $p = $_REQUEST["pass"];

?>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值