ajax get请求 post请求

 

 get请求是把数据拼接到url后面的 直接调用send()即可;

post请求一定要声明请求头 不然会一直发布出去

xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
                xhr.send(params);
posted @ 2021-12-20 16:50  ๑Secret  阅读(25)  评论(0编辑  收藏  举报