How to implement native AJAX encapsulation
This time I will show you how to implement native AJAX encapsulation and what are the precautions for implementing native AJAX encapsulation. The following is a practical case, let's take a look.
Returning to native js, I saw the AJAX package on the Internet, so I used it to change it. I don’t know if there are any disadvantages. I hope you can point it out!
var ajaxHelper = { /*1.0 浏览器兼容的方式创建异步对象*/ makeXHR: function () { //声明异步对象变量 var xmlHttp = false; //声明 扩展 名 var xmlHttpObj = ["MSXML2.XMLHttp.5.0", "MSXML2.XMLHttp.4.0", "MSXML2.XMLHttp.3.0", "MSXML2.XMLHttp", "MSXML.XMLHttp"]; //判断浏览器是否支持 XMLHttpRequest,如果支持,则是新式浏览器,可以直接创建 if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } //否则,只能循环遍历老式浏览器异步对象名,尝试创建,知道创建成功为止 else if (window.ActiveXObject) { for (i = 0; i < xmlHttpObj.length; i++) { xmlHttp = new ActiveXObject(xmlHttpObj[i]); if (xmlHttp) { break; } } } //判断 异步对象 是否创建 成功,如果 成功,则返回异步对象,否则返回false return xmlHttp ? xmlHttp : false; }, /*2.0 发送Ajax请求*/ doAjax: function (method, url, data, isAyn, callback, type) { method = method.toLowerCase(); //2.1创建异步对象 var xhr = this.makeXHR(); //2.2设置请求参数(如果是get,则带url参数,如果不是,则不带) xhr.open(method, url + (method == "get" ? "?" + data : ""), isAyn); //2.3根据请求谓词(get/post),添加不同的请求头 if (method == "get") { xhr.setRequestHeader("If-Modified-Since", 0); } else { xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); } //2.4设置回调函数 xhr.onreadystatechange = function () { //如果接受完毕 服务器发回的 响应报文 if (xhr.readyState == 4) { //判断状态码是否正常 if (xhr.status == 200) { if (type.toLowerCase() == "json") { var ret = {}; try { if (typeof JSON != "undefined") { ret = JSON.parse(xhr.responseText); } else { //IE8以下不支持JSON ret = new Function("return " + xhr.responseText)(); } callback(ret); } catch (e) { console.log(e.message); callback(false); } } else { //直接返回文本 callback(xhr.responseText); } } else { console.log("AJAX Status Code:" + xhr.status); callback(false); } } }; //2.5发送(如果是post,则传参数,否则不传) xhr.send(method != "get" ? data : null); }, /*3.0 直接发送Post请求*/ doPost: function (url, data, isAyn, callback, type) { this.doAjax("post", url, data, isAyn, callback, type); }, /*4.0 直接发送Get请求*/ doGet: function (url, data, isAyn, callback, type) { this.doAjax("get", url, data, isAyn, callback, type); } };
Assume a requirement. The backend requires the input of two numbers n1 and n2, and then returns the sum.
When one of the parameters is empty or not a number, return: {"status":"0", "msg":"The parameter is wrong!"}
When it is correct, Return: {"status":"1", "sum":"//The sum of n1 plus n2"}
The back-end code will not be posted.
Front-end call:
document.getElementById("btnSubmit").onclick = function () { ajaxHelper.doPost("后端url", "n1=10&n2=25", true, function (ret) { if (!ret) { return; } if (ret.status != 1) { alert(ret.msg); return; } var n = ret.sum; var s = ret.status; }, "json"); };
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website !
Recommended reading:
The difference between the use of Ajax and JavaScript
Detailed explanation of the use of Ajax and browser cache
The above is the detailed content of How to implement native AJAX encapsulation. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Title: Methods and code examples to resolve 403 errors in jQuery AJAX requests. The 403 error refers to a request that the server prohibits access to a resource. This error usually occurs because the request lacks permissions or is rejected by the server. When making jQueryAJAX requests, you sometimes encounter this situation. This article will introduce how to solve this problem and provide code examples. Solution: Check permissions: First ensure that the requested URL address is correct and verify that you have sufficient permissions to access the resource.

jQuery is a popular JavaScript library used to simplify client-side development. AJAX is a technology that sends asynchronous requests and interacts with the server without reloading the entire web page. However, when using jQuery to make AJAX requests, you sometimes encounter 403 errors. 403 errors are usually server-denied access errors, possibly due to security policy or permission issues. In this article, we will discuss how to resolve jQueryAJAX request encountering 403 error

According to news from this site on April 17, TrendForce recently released a report, believing that demand for Nvidia's new Blackwell platform products is bullish, and is expected to drive TSMC's total CoWoS packaging production capacity to increase by more than 150% in 2024. NVIDIA Blackwell's new platform products include B-series GPUs and GB200 accelerator cards integrating NVIDIA's own GraceArm CPU. TrendForce confirms that the supply chain is currently very optimistic about GB200. It is estimated that shipments in 2025 are expected to exceed one million units, accounting for 40-50% of Nvidia's high-end GPUs. Nvidia plans to deliver products such as GB200 and B100 in the second half of the year, but upstream wafer packaging must further adopt more complex products.

Using Ajax to obtain variables from PHP methods is a common scenario in web development. Through Ajax, the page can be dynamically obtained without refreshing the data. In this article, we will introduce how to use Ajax to get variables from PHP methods, and provide specific code examples. First, we need to write a PHP file to handle the Ajax request and return the required variables. Here is sample code for a simple PHP file getData.php:

This website reported on July 9 that the AMD Zen5 architecture "Strix" series processors will have two packaging solutions. The smaller StrixPoint will use the FP8 package, while the StrixHalo will use the FP11 package. Source: videocardz source @Olrak29_ The latest revelation is that StrixHalo’s FP11 package size is 37.5mm*45mm (1687 square millimeters), which is the same as the LGA-1700 package size of Intel’s AlderLake and RaptorLake CPUs. AMD’s latest Phoenix APU uses an FP8 packaging solution with a size of 25*40mm, which means that StrixHalo’s F

How to solve the problem of jQueryAJAX error 403? When developing web applications, jQuery is often used to send asynchronous requests. However, sometimes you may encounter error code 403 when using jQueryAJAX, indicating that access is forbidden by the server. This is usually caused by server-side security settings, but there are ways to work around it. This article will introduce how to solve the problem of jQueryAJAX error 403 and provide specific code examples. 1. to make

Ajax (Asynchronous JavaScript and XML) allows adding dynamic content without reloading the page. Using PHP and Ajax, you can dynamically load a product list: HTML creates a page with a container element, and the Ajax request adds the data to that element after loading it. JavaScript uses Ajax to send a request to the server through XMLHttpRequest to obtain product data in JSON format from the server. PHP uses MySQL to query product data from the database and encode it into JSON format. JavaScript parses the JSON data and displays it in the page container. Clicking the button triggers an Ajax request to load the product list.

By encapsulating code, C++ functions can improve GUI development efficiency: Code encapsulation: Functions group code into independent units, making the code easier to understand and maintain. Reusability: Functions create common functionality that can be reused across applications, reducing duplication and errors. Concise code: Encapsulated code makes the main logic concise and easy to read and debug.
