发送Ajax请求

   let xhr=new XMLHttpRequest();  //创建Ajax
    XML是一个数据结构
   //添加专属事件
   xhr.onreadystatechange=()=>{
   //判断是否满足Ajax状态码到4(完成)和HTTP状态码为200(成功)
            if(xhr.readyState===4&&xhr.status===200){
                console.log(xhr.responseText);//输出users.js中res.send()的结果
            }
            
        }
   //请求的类型 和 请求的地址(URL)
    xhr.open("GET",`/users/login?username=${username}&password=${password}`);
    xhr.send();//发送请求

请求类型

GET
xhr.open("GET",`/users/login?username=${username}&password=${password}`);
xhr.send();
//在服务端获取内容用req.query
POST
xhr.open(`POST`, `/users/login`);
xhr.setRequestHeader("Content-type", "application/json");
xhr.send(JSON.stringify({username,password}));
//在服务端获取内容用req.body
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值