Define your own ajax function using JavaScript

Define your own ajax function using JavaScript

Since the network requests initiated by native js are submitted to the server in the form of query strings, it is more convenient for users to submit parameters in the form of objects, so it is necessary to process the parameter objects passed by the user, define the resolveData function, set the formal parameters to receive the parameters, traverse the objects inside, concatenate the keys and values ​​using the = method, and then add the obtained values ​​to the empty array; finally, use the & symbol to split each item of the array and return it; define the itheima function, set the formal parameters to receive the configuration object parameters passed by the user, create an xhr object, pass the passed parameters to the function that processes the parameters, and give the returned value to a variable. Since they are different requests, judgments must be made. First, it is a GET request to determine whether the method in the parameters is all equal to GET. Since the passed parameters may be lowercase, they are converted to uppercase through the toUpperCase method. If the condition is met, call the open method, fill in the corresponding values, and call the send function; POST is the same, except that the submitted data has more parameters and the POST request requires the "Content-Type" header to specify the MIME type of the request subject. Finally, call the listening event;

function resolveData(data) {
    var arr = [];
    for (var k in data) {
        var str = k + "=" + data[k];
        arr.push(str)
    }
    return arr.join("&")
}
function itheima(options) {
    var xhr = new XMLHttpRequest();
    var qs = resolveData(options.data);
    if (options.method.toUpperCase() === "GET") {
        xhr.open(options.method, options.url + "?" + qs);
        xhr.send();
    } else if(options.method.toUpperCase() === "POST"){
        xhr.open(options.method, options.url)
        xhr.setRequestHeader("Content-Type","application/x-www-form-urlencoded")
        xhr.send(qs)
    }
    xhr.onreadystatechange = function () {
        if (xhr.readyState === 4 && xhr.status === 200) {
            var result = JSON.parse(xhr.responseText)
            options.success(result);
        }
    }
}

Finally, test whether it is successful~

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Test interface</title>
<script src="itheima.js"></script>
</head>
<body>
    <script>
        itheima({
            method:"GET",
            url:"http://www.liulongbin.top:3006/api/getbooks",
            data:{
                id:1
            },
            success:function(res){
                console.log(res);
            }
        });
    </script>
</body>
</html> 

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Summary of how to use ajax to set and get custom header information in js
  • How to implement ajax call background definition method based on JavaScript
  • ASP.NET MVC uses AJAX to call the JsonResult method and return custom error information
  • Detailed explanation of JavaScript custom functions
  • JavaScript recursive function definition and usage example analysis
  • Summary of several common methods of defining functions in JS
  • Detailed Example of JavaScript Function Definition Method

<<:  Flex layout makes adaptive pages (syntax and examples)

>>:  The difference between html, xhtml and xml

Recommend

Several methods of deploying multiple front-end projects with nginx

I have summarized 3 methods to deploy multiple fr...

HTML uses the title attribute to display text when the mouse hovers

Copy code The code is as follows: <a href=# ti...

Detailed explanation of vite2.0+vue3 mobile project

1. Technical points involved vite version vue3 ts...

Detailed explanation of Nginx rewrite jump application scenarios

Application scenario 1: Domain name-based redirec...

JS realizes simple picture carousel effect

This article shares the specific code of JS to ac...

MySQL 8.0.12 decompression version installation tutorial

This article shares the installation tutorial of ...

Research on the problem of flip navigation with tilted mouse

In this article, we will analyze the production of...

What is BFC? How to clear floats using CSS pseudo elements

BFC Concept: The block formatting context is an i...

Using text shadow and element shadow effects in CSS

Introduction to Text Shadows In CSS , use the tex...

Configure Java development environment in Ubuntu 20.04 LTS

Download the Java Development Kit jdk The downloa...

The process of installing SVN on Ubuntu 16.04.5LTS

This article briefly introduces the process of se...

Implementing countdown effect with javascript

Use Javascript to achieve the countdown effect, f...

MySQL8.0.18 configuration of multiple masters and one slave

Table of contents 1. Realistic Background 2. Agre...

Teach you to connect to MySQL database using eclipse

Preface Since errors always occur, record the pro...

Vue directives v-html and v-text

Table of contents 1. v-text text rendering instru...