api代理提取_了解提取API

api代理提取

Interested in learning JavaScript? Get my ebook at jshandbook.com

有兴趣学习JavaScript吗? 在jshandbook.com上获取我的电子书

Since IE5 was released in 1998, we’ve had the option to make asynchronous network calls in the browser using XMLHttpRequest (XHR).

自IE5于1998年发布以来,我们可以选择使用XMLHttpRequest(XHR)在浏览器中进行异步网络调用。

Quite a few years after this, Gmail and other rich apps made heavy use of it, and made the approach so popular that it had to have a name: AJAX.

在此之后的数年中,Gmail和其他丰富的应用程序大量使用了它,并使该方法如此流行,以至于必须使用一个名称: AJAX

Working directly with the XMLHttpRequest has always been a pain, and it was almost always abstracted by some library. In particular, jQuery has its own helper functions built around it:

直接使用XMLHttpRequest一直很麻烦,并且几乎总是被某些库抽象化。 特别是,jQuery围绕它构建了自己的帮助器函数:

  • jQuery.ajax()

    jQuery.ajax()

  • jQuery.get()

    jQuery.get()

  • jQuery.post()

    jQuery.post()

and so on.

等等。

They had a huge impact on making asynchronous calls more accessible. In particular, they focused on older browsers to make sure everything still worked.

它们对使异步调用更易于访问产生了巨大影响。 特别是,他们专注于较旧的浏览器,以确保所有功能仍然有效。

The Fetch API has been standardized as a modern approach to asynchronous network requests and uses Promises as a building block.

Fetch API已被标准化为异步网络请求的现代方法,并使用Promises作为构建块。

Fetch at the time of writing (Sep 2017) has a good support across the major browsers, except IE.

撰写本文时(2017年9月)的抓取在IE之外的所有主要浏览器中都有很好的支持。

The polyfill released by GitHub allows us to use fetch on any browser.

该填充工具通过GitHub的释放使我们能够利用fetch的任何浏览器。

使用提取 (Using Fetch)

Starting to use Fetch for GET requests is very simple:

开始将Fetch用于GET请求非常简单:

fetch('/file.json')

You’re already using it: fetch is going to make an HTTP request to get the file.json resource on the same domain.

您已经在使用它:fetch将发出HTTP请求以获取同一域上的file.json资源。

As you can see, the fetch function is available in the global window scope.

如您所见, fetch功能在全局window范围内可用。

Now let’s make this a bit more useful, let’s actually see what the content of the file is:

现在,让它变得更加有用,让我们实际看看文件的内容是什么:

fetch('./file.json') .then(response => response.json()).then(data => console.log(data))

Calling fetch() returns a promise. We can wait for the promise to resolve by passing a handler with the then() method of the promise.

调用fetch()返回一个promise。 我们可以通过向处理程序传递promise的then()方法来等待promise解析。

That handler receives the return value of the fetch promise, a Response object.

该处理程序接收fetch承诺的返回值,即Response对象。

We’ll see this object in more detail in the next section.

在下一节中,我们将更详细地介绍该对象。

捕捉错误 (Catching errors)

Since fetch() returns a promise, we can use the catch method of the promise to intercept any error occurring during the execution of the request, and the processing is done in the then callbacks:

由于fetch()返回一个promise,我们可以使用promise的catch方法来拦截在执行请求期间发生的任何错误, thenthen回调中完成处理:

fetch('./file.json').then(response => {  //...}.catch(err => console.error(err))

响应对象 (Response Object)

The Response Object returned by a fetch() call contains all the information about the request and the response of the network request.

fetch()调用返回的响应对象包含有关请求和网络请求响应的所有信息。

Accessing the headers property on the response object gives you the ability to look into the HTTP headers returned by the request:

访问response对象上的headers属性使您能够查看请求返回的HTTP标头:

fetch('./file.json').then(response => {  console.log(response.headers.get('Content-Type'))  console.log(response.headers.get('Date'))})

状态 (status)

This property is an integer number representing the HTTP response status.

此属性是代表HTTP响应状态的整数。

  • 101, 204, 205, or 304 is a null body status

    101204205 ,或304是一个null body状态

  • 200 to 299, inclusive, is an OK status (success)

    200299 (含)之间为OK状态(成功)

  • 301, 302, 303, 307, or 308 is a redirect

    301302303307 ,或308是一个redirect

fetch('./file.json') .then((response) => {   console.log(response.status) })

statusText (statusText)

statusText is a property representing the status message of the response. If the request is successful, the status is OK.

statusText是代表响应状态消息的属性。 如果请求成功,则状态为OK

fetch('./file.json') .then(response => console.log(response.statusText))

网址 (url)

url represents the full URL of the property that we fetched.

url代表我们获取的属性的完整URL。

fetch('./file.json') .then(response => console.log(response.url))

身体内容 (Body content)

A response has a body, accessible using the text() or json() methods, which return a promise.

响应具有一个正文,可以使用text()json()方法访问该text() ,并返回一个Promise。

fetch('./file.json').then(response => response.text()).then(body => console.log(body))
fetch('./file.json').then(response => response.json()).then(body => console.log(body))

The same can be written using the ES2017 async functions:

可以使用ES2017 异步函数编写相同的代码 :

(async () => {  const response = await fetch('./file.json')  const data = await response.json()  console.log(data)})()

请求对象 (Request Object)

The Request object represents a resource request, and it’s usually created using the new Request() API.

Request对象代表资源请求,通常使用new Request() API创建。

Example:

例:

const req = new Request('/api/todos')

The Request object offers several read-only properties to inspect the resource request details, including

Request对象提供了几个只读属性来检查资源请求的详细信息,包括

  • method: the request’s method (GET, POST, etc.)

    method :请求的方法(GET,POST等)

  • url: the URL of the request.

    url :请求的URL。

  • headers: the associated Headers object of the request

    headers :请求的关联Headers对象

  • referrer: the referrer of the request

    referrer :请求的推荐人

  • cache: the cache mode of the request (e.g., default, reload, no-cache).

    cache :请求的缓存模式(例如,默认,重新加载,无缓存)。

And exposes several methods including json(), text() and formData() to process the body of the request.

并且公开了几种方法,包括json()text()formData()来处理请求的正文。

The full API can be found here.

完整的API可以在这里找到。

Being able to set the HTTP request header is essential, and fetch gives us the ability to do this using the Headers object:

能够设置HTTP请求标头至关重要, fetch使我们能够使用Headers对象执行此操作:

const headers = new Headers()headers.append('Content-Type', 'application/json')

or, simpler:

或者,更简单:

const headers = new Headers({   'Content-Type': 'application/json' })

To attach the headers to the request, we use the Request object, and pass it to fetch() instead of simply passing the URL.

要将标头附加到请求,我们使用Request对象,然后将其传递给fetch()而不是简单地传递URL。

Instead of:

代替:

fetch('./file.json')

we do

我们的确是

const request = new Request('./file.json', {   headers: new Headers({ 'Content-Type': 'application/json' }) })
fetch(request)

The Headers object is not limited to setting values, but we can also query it:

Headers对象不仅限于设置值,我们还可以查询它:

headers.has('Content-Type') headers.get('Content-Type')

and we can delete a header that was previously set:

我们可以删除先前设置的标头:

headers.delete('X-My-Custom-Header')

POST请求 (POST Requests)

Fetch also allows you to use any other HTTP method in your request: POST, PUT, DELETE or OPTIONS.

提取还允许您在请求中使用任何其他HTTP方法:POST,PUT,DELETE或OPTIONS。

Specify the method in the method property of the request, and pass additional parameters in the header and in the request body:

在请求的method属性中指定方法,并在标头和请求正文中传递其他参数:

Example of a POST request:

POST请求的示例:

const options = {   method: 'post',   headers: {     "Content-type": "application/x-www-form-urlencoded; charset=UTF-8" },     body: 'foo=bar&test=1' }
fetch(url, options) .catch((err) => {   console.error('Request failed', err) })

如何取消获取请求 (How to cancel a fetch request)

For a few years after fetch was introduced, there was no way to abort a request once opened.

引入fetch后的几年,一旦打开请求就无法中止请求。

Now we can, thanks to the introduction of AbortController and AbortSignal, a generic API to notify abort events

现在,由于引入了AbortControllerAbortSignal (用于通知中止事件的通用API),我们可以

You integrate this API by passing a signal as a fetch parameter:

您可以通过传递信号作为访存参数来集成此API:

const controller = new AbortController()const signal = controller.signalfetch(‘./file.json’, { signal })

You can set a timeout that fires an abort event 5 seconds after the fetch request has started, to cancel it:

您可以设置一个超时,以在获取请求开始后5秒钟触发中止事件,以将其取消:

setTimeout(() => controller.abort(), 5 * 1000)

Conveniently, if the fetch already returned, calling abort() won’t cause any error.

方便的是,如果获取操作已经返回,则调用abort()不会导致任何错误。

When an abort signal occurs, fetch will reject the promise with a DOMException named AbortError:

当发生异常中止信号时,访AbortError将使用名为AbortErrorDOMException拒绝诺言:

fetch('./file.json', { signal }).then(response => response.text()).then(text => console.log(text)).catch(err => {  if (err.name === 'AbortError') {    console.error('Fetch aborted')  } else {    console.error('Another error', err)  }})

Interested in learning JavaScript? Get my ebook at jshandbook.com

有兴趣学习JavaScript吗? 在jshandbook.com上获取我的电子书

翻译自: https://www.freecodecamp.org/news/understanding-the-fetch-api-a7d4c08c2a7/

api代理提取

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/394727.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

react.lazy 路由懒加载_React lazy/Suspense使用及源码解析

React v16.6.0已经发布快一年了,为保障项目迭代发布,没有及时更新react版本,最近由于开启了新项目,于是使用新的react版本进行了项目开发。项目工程如何搭建,如何满足兼容性要求,如何规范化等等这里不作为介…

Dart编程语言入门

Dart基础入门语法介绍,详细说明可以查看相关视频《Dart编程语言入门》。 变量与常量 变量 1.使用 var 声明变量,默认值为 null var a;//null a 10;2.显示类型声明 int a;//null a 10;3.使用 var 声明,可赋予不同类型的值 var a; //null a 10; //int a…

《PHP精粹:编写高效PHP代码》——1.1节为什么要使用面向对象编程

本节书摘来自华章社区《PHP精粹:编写高效PHP代码》一书中的第1章,第1.1节为什么要使用面向对象编程,作者:(美)  Davey Shafik,更多章节内容可以访问云栖社区“华章社区”公众号查看 1.1 为什…

c语言数据结构系统化,C语言数据结构+数据库+操作系统

http://cv.qiaobutang.com/post/55c419b20cf2009bd4607795第二部分是专业相关的C ,数据库,操作系统,数据结构。http://c.biancheng.net/cpp/u/shuju/数据(Data)是信息的载体,它能够被计算机识别、存储和加工处理。它是计算机程序加…

c语言判断一个序列是不是另一个的子序列

1 #include <stdio.h>2 #include <string.h>//添加字符串头文件3 4 int Subsequence(char s[], char t[]) 5 {6 int m,n,i,j;7 n strlen(s); //n表示序列S的长度8 m strlen(t); //m表示序列T的长度9 i0; 10 j0; 11 if (m>…

linux中python如何调用matlab的数据_特征锦囊:如何在Python中处理不平衡数据

今日锦囊特征锦囊&#xff1a;如何在Python中处理不平衡数据? Index1、到底什么是不平衡数据2、处理不平衡数据的理论方法3、Python里有什么包可以处理不平衡样本4、Python中具体如何处理失衡样本印象中很久之前有位朋友说要我写一篇如何处理不平衡数据的文章&#xff0c;整理…

源码安装zabbix遇到的报错集锦

报错1&#xff1a;checking for mysql_config... configure: error: MySQL library not found 解决办法&#xff1a;查找mysql_config #find / -name "mysql_config*" /usr/local/mysql/bin/mysql_config 在配置时将原有的 --with-mysql 改为 --with-mysql/usr/loca…

pso算法c++语言代码,一C++PSO(PSO)算法

收集和变化PSO算法&#xff0c;它可用于参考实施&#xff1a;#include #include #include #include #include #define rand_01 ((float)rand() / (float)RAND_MAX)const int numofdims 30;const int numofparticles 50;using namespace std;//typedef void (*FitnessFunc)(fl…

Hadoop不适合哪些场景 哪些场景适合?

Hadoop设计的目的主要包括下面几个方面&#xff0c;也就是所谓的适用场景&#xff1a; 1&#xff1a;超大文件 可以是几百M&#xff0c;几百T这个级别的文件。 2&#xff1a;流式数据访问 Hadoop适用于一次写入&#xff0c;多次读取的场景&#xff0c;也就是数据复制进去之后&a…

微服务 边界服务_遵循这些实用原则以获取精心设计的微服务边界

微服务 边界服务by Jake Lumetta杰克卢米塔(Jake Lumetta) 遵循这些实用原则以获取精心设计的微服务边界 (Follow these practical principles to get well-designed microservices boundaries) 如何避免使微服务太小和紧密耦合 (How to avoid making your microservices too …

ShareEntryActivity java.lang.ClassNotFoundException | Android类找不到问题

错误堆栈&#xff1a; Process: com.mci.smagazine, PID: 23265java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.mci.smagazine/com.mci.smagazine.apshare.ShareEntryActivity}: java.lang.ClassNotFoundException: com.mci.smagazine.apshare…

阿里Android p6准备,项目经历准备篇——如何准备阿里巴巴P6/P7前端面试

项目经历准备篇——如何准备阿里巴巴P6/P7前端面试在上次的校招文章之后&#xff0c;有很多同学问有没有社招相关的东西可以写一篇&#xff0c;现在它来了。比起校招&#xff0c;社招更加看重项目经历项目经历反应的思考。本文针对的是想进入阿里的P6/P7同学&#xff0c;着重讲…

for in for of区别_Python 第4课:for…in循环黄金搭档之range()函数

乐学趣学Py● 04&#xff1a;for…in循环黄金搭档之range()函数●Python趣味小百科Python中的绘图模块为什么叫Turtle海龟&#xff0c;而不是cat ,dog,bird呢&#xff1f;原来Python引用了麻省理工大学教授开发的logo海龟制图语言,能通过绘图直观地教大家学习编程。实践是最好的…

《游戏设计师修炼之道:数据驱动的游戏设计》一3.8小结

3.8小结 在玩游戏期间使用的数学知识通常相当简单&#xff0c;尽管代码中使用的数学知识可能非常复杂。玩家不希望由于在玩游戏期间不得不处理许多数字而分心&#xff0c;因为他们的大脑必须从控制角色的动作转换到记住数字的含义。许多游戏回避了数字&#xff0c;而是通过像计…

ubuntu下安装配置nfs

sudo apt-get install nfs-kernel-server sudo /nfs_root vim /etc/exports 在这个文件末尾添加 /nfs_root *(rw,sync,no_root_squash) 保存退出 重启nfs服务 sudo /etc/init.d/rpcbind restart sudo /etc/init.d/nfs-kernel-server restart 测试 sudo mount 192.168.2.1:/nf…

使命愿景价值观_为什么在制作产品时应该专注于愿景,价值,风险和先例

使命愿景价值观by Steve史蒂夫(Steve) 为什么在制作产品时应该专注于愿景&#xff0c;价值&#xff0c;风险和先例 (Why you should focus on vision, value, risk, and precedent when making your product) 几周前&#xff0c;产品开发人员John Cutler发表了一篇出色的文章&…

安卓前端布局Android,Android开发的几种常见布局

目前正在从事iOS开发&#xff0c;对于安卓就是大学的时候自学了点&#xff0c;做过几个小的项目&#xff0c;软件外包大赛、计算机设计大赛、移动应用大赛都拿过奖项&#xff0c;呵呵。。。现在回想起来以前大学做的安卓比赛是多么的幼稚。 从现在开始我要从头一步一步回顾安卓…

《Cocos2D权威指南》——3.9 本章小结

3.9 本章小结 本章对Cocos2D中的几个核心类&#xff08;CCNode、CCScene、CCLayer、CCSprite&#xff09;进行了详细介绍&#xff0c;并且通过节点层级图让大家了解到Cocos2D游戏的基本组成&#xff1b;然后介绍了Cocos2D中的单例。通过完善第2章的游戏实例&#xff0c;大家对…

永恒python图片_python 数据词云展示实例(3)- 背景图设置

记录wordcloud库背景图的设置及样板 之前介绍了wordcloud的基本使用wordcloud的基本使用&#xff0c;本文记录一下如何设置背景图。 样图 背景图tim.jpg 生成样图dream.png 样板 from PIL import Image,ImageSequence image Image.open(tim.jpg)#打开背景图 graph np.array(im…

创造的快乐

早上9点半到的图书馆&#xff0c;十点左右才进入状态&#xff0c;上午和下午的一半时间都用来看AMD的GCN架构&#xff0c;看这种官方的文档&#xff0c;和论文一样&#xff0c;只看摘要和图片&#xff0c;没有死磕的精神&#xff0c;很难有收获&#xff0c;结果就是&#xff0c…