Ajax中发送get、post请求以及服务端响应json数据
2021/6/7 10:23:34
本文主要是介绍Ajax中发送get、post请求以及服务端响应json数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.发送get请求
get.html代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Ajax Get 请求</title> <style> #result { width: 200px; height: 100px; border:solid 1px #90b; } </style> </head> <body> <button>点击发送请求</button> <div id="result"></div> <script> //获取button元素 const btn = document.getElementsByTagName('button')[0]; const result = document.getElementById('result'); //绑定事件 btn.onclick = function() { //1.创建对象 const xhr = new XMLHttpRequest(); //2.初始化,设置请求方法和url xhr.open('GET', 'http://127.0.0.1:8000/server'); //3.发送 xhr.send(); //4.事件绑定,处理服务端返回的结果 //on 当...时候 //readystate是xhr对象中的属性,表示状态0 1 2 3 4 //change 改变 xhr.onreadystatechange = function() { //判断服务端是否返回了所有的结果 if (xhr.readyState === 4) { //判断响应状态码 200 404 403 401 500 //2xx表示成功 if (xhr.status >= 200 && xhr.status < 300) { //响应行 //console.log(xhr.status); //状态码 //console.log(xhr.statusText); //状态字符串 //console.log(xhr.getAllResponseHeaders()); //所有响应头 //console.log(xhr.response); //响应体 result.innerHTML = xhr.response; } else { } } } } </script> </body> </html>
- onreadystatechange()有四个值,分别对应readystate()函数的值从0-1、1-2、2-3、3-4
xhr.open('GET', 'http://127.0.0.1:8000/server');
客户端发送get请求,服务器中路由也要设置get,app.get('/server', (request, response) => {
,如果客户端发送的是post请求,服务器端也要设置post
2.发送post请求
post.html代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Post</title> <style> #result { width: 200px; height: 100px; border: solid 1px #903; } </style> </head> <body> <div id="result"></div> <script> const result = document.getElementById('result'); result.addEventListener('mouseover', function() { const xhr = new XMLHttpRequest(); xhr.open('POST', 'http://127.0.0.1:8000/server'); //设置请求头信息 xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.send("a=100&b=200&c=300"); //发送参数的值 xhr.onreadystatechange = function() { if (xhr.readyState === 4) { if (xhr.status >= 200 && xhr.status < 300) { result.innerHTML = xhr.response; } } else { } } }); </script> </body> </html>
3.服务端响应json数据
json.html代码:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>JSON</title> <style> #result { width: 200px; height: 100px; border: solid 1px #89b; } </style> </head> <body> <div id="result"></div> <script> const result = document.getElementById('result'); window.onkeydown = function() { const xhr = new XMLHttpRequest(); //设置响应体数据类型,自动转换数据 xhr.responseType = 'json'; xhr.open('GET', 'http://127.0.0.1:8000/json-server'); xhr.send(); xhr.onreadystatechange = function() { if (xhr.readyState === 4) { if (xhr.status >= 200 && xhr.status < 300) { //result.innerHTML = xhr.response; //手动将response数据转化为对象 //let data = JSON.parse(xhr.response); //console.log(data); //result.innerHTML = data.name; //自动对数据进行转换 console.log(xhr.response); result.innerHTML = xhr.response.name; } } else { } } } </script> </body> </html>
xhr.responseType = 'json';
会自动将xhr.response转换成对象类型
4.服务器端
servser.js代码:
//引入express const express = require('express'); //创建应用对象 const app = express(); //创建路由规则 //get请求 app.get('/server', (request, response) => { //设置响应头 response.setHeader('Access-Control-Allow-Origin', '*'); //设置响应体 response.send('hello ajax GET'); }); //post请求 app.post('/server', (request, response) => { //设置响应头 response.setHeader('Access-Control-Allow-Origin', '*'); //设置响应体 response.send('hello ajax POST'); }); //服务端响应json数据 app.get('/json-server', (request, response) => { //设置响应头 response.setHeader('Access-Control-Allow-Origin', '*'); //设置响应体 const data = { name: 'jerry' }; var str = JSON.stringify(data); response.send(str); }); //监听端口启动服务 app.listen(8000, () => { console.log("服务已经启动,8000端口监听中...."); });
这篇关于Ajax中发送get、post请求以及服务端响应json数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-01Vue.js 是什么-icode9专业技术文章分享
- 2024-11-01Vue3入门教程:从零开始搭建第一个Vue3项目
- 2024-11-01详解vueRouter4基础教程
- 2024-11-01Vuex4课程:初学者的完整入门指南
- 2024-10-31Vue3课程:新手入门到初级掌握
- 2024-10-31Vue3课程:新手入门到初级应用详解
- 2024-10-31VueRouter4课程:新手入门与实战指南
- 2024-10-31Vuex4学习:从入门到初级实战教程
- 2024-10-31Vue3教程:新手入门与基础实战
- 2024-10-31Vue教程:新手快速入门指南