In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article introduces the knowledge of "creating a xhr object in JavaScript and using it". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
I. concept
1. What is Ajax?
Ajax (Asynchronous Javascript And XML), that is, asynchronous JavaScript and XML,Ajax is actually a way of asynchronous communication between the browser and the server.
Asynchronous JavaScript
It can send requests to the server asynchronously without blocking the current page while waiting for a response, in which case the browser can do its own thing. The browser does not begin to process the response data until the response is successfully obtained.
XML
It is a format for transmitting data in front and back end data communication, which is not used very much now, and JSON is more commonly used now.
So to sum up the above concept, Ajax is to update some part of the page without the browser reloading the page.
two。 Application scenario
Registration page
Search Tip
There are many more.
So the biggest advantage of Ajax is that sending a request will not affect the user's operation, which is equivalent to two parallel lines, "you are busy, I am busy", and you don't have to wait for the page to jump and waste time.
Second, realize Ajax
Let's first look at a set of code: the json file and html file created here are in the same folder
/ / the code of test.josn
{
"reply": "I got it!"
}
Const xhr = new XMLHttpRequest ()
Xhr.onreadystatechange = () = > {
If (xhr.readyState! = = 4) return
If ((xhr.status > = 200 & & xhr.status)
< 300) || xhr.status === 304) { console.log(xhr.responseText); } }; xhr.open('GET', 'text.json', true); xhr.send(null); 执行结果: 在这里要啰嗦两句:json文件中的对象键名一定要用双引号包裹,如果属性值里面有字符串,也需要用双引号包裹。 执行步骤 1.创建xhr对象 const xhr = new XMLHttpRequest(); 2.利用onreadystatechange属性,封装一个函数,用于监听 readyState的变化。 xhr.onreadystatechange = () =>{
If (xhr.readyState! = = 4) return
If (xhr.status > = 200 & & xhr.status
< 300 ){ console.log(xhr.responseText); } }; 2.1在xhr对象执行收发数据的时候,它会经历五种状态: Ajax状态码 状态 0 (未初始化)未启动 1 (启动)已经调用 open(),但尚未调用 send() 2 (发送)发送状态,已经调用 send(),但尚未接收到响应 3 (接收)已经接收到部分响应数据 4 (完成)已经接收到全部响应数据,而且已经可以在浏览器中使用了 加两句console.log()就可以看见状态码的变化了。 上述的readyStateChange事件是专门用来监听xhr对象的Ajax状态码,只要readyState(也就是Ajax状态码)发生了变化,就会触发这个事件。 2.2判断HTTP状态码是否为200-299 Ajax状态码为4是不够的,这仅仅表明收到服务器端响应的全部数据,并不能保障数据都是正确的。 所以,我们还需要判断HTTP的状态码,判断xhr对象的status属性值是否在200到300之间(200-299 用于表示请求成功) if (xhr.status >& & xhr.status
< 300 ){ console.log(xhr.responseText); } 所以要想请求成功完成,必须要满足上面两个条件。 3.准备发送请求 xhr.open('GET','text.json', true); 参数1:选用"GET"或者"POST"的请求方式 参数2:发送请求的地址 参数3:是否异步 4.发送请求 xhr.send(null) 注意:send() 的参数是通过请求体携带的数据,而GET请求是通过请求头携带数据的,所以要把send的参数置为null 三、跨域 概念 什么是跨域?为什么会有跨域这种问题存在? 跨域的字面意思来说,就是向一个域发送请求,如果要请求的域和当前域是不同域,就叫跨域 https(协议)://a.xxx.com(域名):8080(端口号)/flie/list(路径) 只要协议、域名、端口号,只要有任何一个不一样,都是不同域 同源策略 同源策略限制了跨域,同源策略是浏览器核心的安全机制,如果没有了同源策略,浏览器的正常功能就会受到影响,所以web是构建在同源策略的基础之上。 如果非同源,那么在请求数据时,浏览器会在控制台中报一个异常,提示拒绝访问。 以下就是不同源: 前端: http://a.com:8080/ 服务端:https//b.com/api/xxx 所以同源就是协议、域名、 端口号都要一样。 跨域解决方法 1.CORS 跨域资源共享 2.JSONP 感兴趣的同学可以去查阅一下这两个解决方法,因为需要后端API的支持,所以这里就不给大家演示了。 四、写一个简易的Ajax 这个代码结合了Promise和Ajax的知识点,如果有小伙伴对Promise不熟悉的,可以点这里: JavaScript异步(必考三座大三之三)——第三集:Promise_精通各种hello world的小希的博客-CSDN博客_js异步加载的方式 function ajax(url) { const p = new Promise((resolve, reject) =>{
Const xhr = new XMLHttpRequest ()
Xhr.open ('GET', url, true)
Xhr.onreadystatechange = () = > {
If (xhr.readyState = 4) {
If ((xhr.status > = 200 & & xhr.status)
< 300) || xhr.status === 304){ resolve( JSON.parse(xhr.response) ) }else{ reject(new Error('Response error')) } } } xhr.send(null) }) return p } const url = 'text.json' ajax(url).then(res =>Console.log (res)) .catch (err = > console.log (err))
That's all for creating a xhr object in JavaScript and using it. Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.