Home > Web Front-end > JS Tutorial > body text

Steps to send ajax request data using native javascript

php是最好的语言
Release: 2018-08-03 14:14:40
Original
3592 people have browsed it

Note: The request address is your own project address, please change it yourself.

This is just a simple use of native XMLHttpRequst. Later, I will post how to encapsulate native ajax to implement jequery's ajax

The first step: Create an xhr object.

const xhr = new XMLHttpRequest();
Copy after login

The second step: open() settings.

xhr.open('PUT','http://118.24.84.199:8080/sm/accept/list',false);
Copy after login

Step 3: Set the headers required by the interface.

xhr.setRequestHeader('token','515b8c62-ddf4-41ef-a7c8-93957e1c589e');
xhr.setRequestHeader('Accept','application/json');
xhr.setRequestHeader('Content-Type','application/json');
Copy after login

Step 4: Send request data.

Note: The data here needs to be processed as a json file and processed using JSON.stringify.
let data = {
                page:1,
                pageSize:10,
            };
data = JSON.stringify(data);
xhr.send(data);
Copy after login

It has been sent here, and you can check the request status in the browser's network request.

Steps to send ajax request data using native javascript

But the data has not been processed in the page yet

If the data is a synchronous request: process the data directly after the send() statement.
console.log(xhr.response);
Copy after login
But in general, data requests are asynchronous, so the onreadystatechange event must be used to process the data.
Print the data after receiving it.
xhr.onreadystatechange = function(event){
    if (xhr.readyState == 4){
        if ((xhr.status >= 200 && xhr.status < 300) || xhr.status == 304){
            console.log(JSON.parse(xhr.response));
        } else {
            console.log("Request was unsuccessful: " + xhr.status);
        }
    }
};
Copy after login

Related articles:

How to use native JS to implement Ajax’s GET POST request

Example explanation using native JavaScript processing AJAX request method

Related videos:

Ajax principle detailed video tutorial

The above is the detailed content of Steps to send ajax request data using native javascript. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template