


What are $.ajax, axios and fetch? Detailed explanation of how to use fetch
This article will introduce to you what $.ajax, axios, and fetch are respectively, so that you can learn more about how to use fetch. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
What is Ajax
?
Answer: Ajax is a technology that can use asynchronous data transfer (HTTP request) between the browser and the server. Use this to allow a page to request a small amount of data without having to refresh the entire page. For traditional pages (not using Ajax) to refresh part of the content, the entire web page must be reloaded.
Ajax
Based on what?
Answer: It is based on XMLHttpRequest (XHR). This is a relatively rough API that does not comply with the design principle of separation of concerns (Separation of Concerns), and is not so friendly to configure and use. The background of
$.ajax
?
Answer: Based on the above reasons, various ajax libraries are referenced, but the most famous one is $.ajax()
in the jQuery API. $.ajax()
One of its advantages is asynchronous operation, but jQuery’s asynchronous operation is an event-based asynchronous model, which is not as friendly as promise.
#fetch
Generated background?
Answer: Based on the various factors mentioned above, the fetch API came into being. But it is easy to use, and it has some problems (this problem will be discussed in detail below, and the corresponding solutions will be explained), coupled with compatibility issues (IE does not support it at all), so many developers use axios. Three-party library.
Library that supports promise (axios)?
Answer: axios
This library is now a relatively common industry solution. axios
One reason for its popularity is promise. Another reason is promise. One reason is the popularity of libraries based on data operations (vue.js, angular.js, react.js, etc.), while traditional jQuery is a library based on DOM operations. But it also has flaws, that is, before we use it, we must ensure that the library has been introduced.
Actually, personally, I still prefer to use fetch
. If you encounter compatibility issues during development, you only need isomorphic fetch without introducing an additional library. Let’s focus on fetch.
Usage of fetch
fetch(url, options) .then(response => console.log(responese)) .catch(err => console.log(err))
url: access address
options: common configuration parameters
response: request return object
Request parameter configurationoptions
For details, please refer to MDN fetch
Fetch problems and solutions
You need two steps to get the data
fetch('https://api.github.com/users/lvzhenbang/repos') .then(res => { console.log(res) return res.text() }).then(data => { console.log(data) })
Through the above code, you can find that the Response
object returned by direct printing has no data at all. To obtain the required data, you must go through an intermediate methodresponse.text()
(fetch provides 5 methods)
On the other hand, axios
is much more convenient to use, and the Response
object it returns has data. Within the data
attribute. The reference code is as follows:
axios.get('https://api.github.com/users/lvzhenbang/repos') .then(res => console.log(res));
Of course, this is not a big problem, but it is a little troublesome to use.
The fetch request defaults to no
cookie
To solve this problem, you need to options
Medium configuration{credentials: 'include'}
Not all request errors will
reject
That is to say, the catch
method cannot catch all errors. When the error can be expressed in the form of a status code (such as: 404, 500, etc.), fetch
returns Promise
will not have a reject, and catch
will only be effective when the network fails or the request is blocked.
To solve this problem, we can determine whether the ok
in the Response
object is true. If not, use Promise
to manually add a reject
That’s it. The reference code is as follows:
fetch('https://api.github.com/usrs/lvzhenbang/repos') .then(res => { if (res.ok) { return res.text() } else { return Promise.reject('请求失败') } }).then(data => { console.log(data) }).catch(err => { console.log(err) })
If you do not add reject
manually, undefined
will be printed, which is not what we want. Of course, use axios
There is no need to consider this issue, the code is as follows:
axios.get('https://api.github.com/usrs/lvzhenbang/repos') .then(res => console.log(res)) .catch(err => console.log(err));
fetch optimization
Since the res.text()
method returns a promise
, so .then
can be called directly; in addition, in order to ensure that all errors return a unified format (all return a Promise
), the above code can be optimized as follows:
fetch('https://api.github.com/usrs/lvzhenbang/repos') .then(res => { return res.text() .then(data => { if (res.ok) { return data } elese { return Promise.reject(json) } }) }).then(data => { console.log(data) }).catch(err => { console.log(err) })
Students who have played express/koa, or have a certain understanding of the backend, know that the server will also return some prompt information in some cases, so how should it be handled? Common error prompts include a status code (status) and prompt message (msg). The code is modified as follows:
server:
res.status(404).send({ err: 'not found' })
client:
fetch('https://api.github.com/usrs/lvzhenbang/repos') .then(handleResponse).then(data => { console.log(data) }).catch(err => { console.log(err) }) function handleResponse (res) { return Promise.reject(Object.assign({}, res.text(), { status: res.status, msg: res.statusText })) }
兼容解决方案
以上问题解决并优化fetch的使用后,发现fetch还是一个不错的选择。针对不同使用情况可以作如下处理:
首先,要引入 es5-shim
解决fetch这个新特性的同构;
其次,要引入 es6-promise
解决promise的兼容问题;
然后,引入 fetch-ie8
解决fech的同构问题;
最后,引入 fetch-jsonp
解决跨域问题。
当然,你也不需要针对性的解决这些问题,GitHub团队提供了一个polyfill解决方案,你不需要一步步的是实现。只需要两步:
-
安装
fetch
packagenpm install whatwg-fetch --save
在使用的模块引入
fetch
import 'whatwg-fetch' window.fetch(url, options)
其他的使用和 fetch
则这个原生的API雷同。
哪些情况可以放弃使用fetch
获取Promsie的状态,如:isRejected, isResolved
如果使用习惯了jquery的progress方法的,或者使用deffered的一些方法
具体 fetch
实现了哪些与jquery类似的方法可参考whatwg-ftch 或者 fetch-issue
The above is the detailed content of What are $.ajax, axios and fetch? Detailed explanation of how to use fetch. 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

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:

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

Build an autocomplete suggestion engine using PHP and Ajax: Server-side script: handles Ajax requests and returns suggestions (autocomplete.php). Client script: Send Ajax request and display suggestions (autocomplete.js). Practical case: Include script in HTML page and specify search-input element identifier.

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.

In order to improve Ajax security, there are several methods: CSRF protection: generate a token and send it to the client, add it to the server side in the request for verification. XSS protection: Use htmlspecialchars() to filter input to prevent malicious script injection. Content-Security-Policy header: Restrict the loading of malicious resources and specify the sources from which scripts and style sheets are allowed to be loaded. Validate server-side input: Validate input received from Ajax requests to prevent attackers from exploiting input vulnerabilities. Use secure Ajax libraries: Take advantage of automatic CSRF protection modules provided by libraries such as jQuery.

How to use Ajax functions to achieve asynchronous data interaction With the development of the Internet and Web technology, data interaction between the front end and the back end has become very important. Traditional data interaction methods, such as page refresh and form submission, can no longer meet user needs. Ajax (Asynchronous JavaScript and XML) has become an important tool for asynchronous data interaction. Ajax enables the web to use JavaScript and the XMLHttpRequest object
