Heim  >  Artikel  >  Web-Frontend  >  Bringen Sie Ihnen bei, wie man Axios lernt

Bringen Sie Ihnen bei, wie man Axios lernt

PHP中文网
PHP中文网Original
2017-06-22 13:22:172578Durchsuche

Axios ist ein auf Promise basierender HTTP-Client für Browser und NodeJS. Der folgende Artikel führt Sie hauptsächlich in die relevanten Informationen des Axios-Lern-Tutorials ein Freunde, lasst uns gemeinsam einen Blick darauf werfen.

Vorwort

Als Vuejs-Autor You Yuxi die Nachricht veröffentlichte, wird er die Vue-Ressource nicht mehr weiter pflegen und empfiehlt jedem, sie zu verwenden axios zu starten ist immer mehr Menschen bekannt. Ich wollte ursprünglich eine detaillierte Anleitung im Internet finden, aber plötzlich stellte ich fest, dass die offizielle Dokumentation von Axios selbst sehr detailliert ist! ! Was für ein Fahrrad willst du, wenn du das hast! ! Daher wird jedem empfohlen, sich mit dieser Art von Bibliothek vertraut zu machen und die offizielle Dokumentation im Detail zu lesen. Ich habe die offizielle Dokumentation von Axios grob übersetzt. Ich glaube, dass Axios ein Kinderspiel sein wird, solange Sie diesen Artikel gründlich verstehen und üben. !

Wenn Sie glauben, dass dieser Artikel für Sie hilfreich ist, geben Sie ihm bitte ein „Gefällt mir“ oder folgen Sie ihm und speichern Sie ihn. Ihre Ermutigung ist mir sehr wichtig.

Axios-Einführung

Axios ist ein Promise-basierter HTTP-Client für Browser und Nodejs. Er weist die folgenden Eigenschaften auf:

  • XMLHttpRequest über den Browser erstellen

  • HTTP-Anfrage von node.js erstellen

  • Support Promise API

  • Abfangen von Anfragen und Antworten

  • Anfrage- und Antwortdaten konvertieren

  • Anfrage abbrechen

  • JSON-Daten automatisch konvertieren

  • Client unterstützt die Verhinderung von CSRF/XSRF

Browserkompatibilität

Einführungsmethode:

$ npm install axios
$ cnpm install axios //taobao源
$ bower install axios

oder verwenden Sie cdn:

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

Zum Beispiel:

GET-Anfrage ausführen

// 向具有指定ID的用户发出请求
axios.get(&#39;/user?ID=12345&#39;)
 .then(function (response) {
 console.log(response);
 })
 .catch(function (error) {
 console.log(error);
 });
// 也可以通过 params 对象传递参数
axios.get(&#39;/user&#39;, {
 params: {
 ID: 12345
 }
 })
 .then(function (response) {
 console.log(response);
 })
 .catch(function (error) {
 console.log(error);
 });

POST-Anfrage ausführen

axios.post(&#39;/user&#39;, {
 firstName: &#39;Fred&#39;,
 lastName: &#39;Flintstone&#39;
 })
 .then(function (response) {
 console.log(response);
 })
 .catch(function (error) {
 console.log(error);
 });

Mehrere gleichzeitige Anfragen ausführen

function getUserAccount() {
 return axios.get(&#39;/user/12345&#39;);
}
function getUserPermissions() {
 return axios.get(&#39;/user/12345/permissions&#39;);
}
axios.all([getUserAccount(), getUserPermissions()])
 .then(axios.spread(function (acct, perms) {
 //两个请求现已完成
 }));

axios API

kann angefordert werden, indem die entsprechende Konfiguration an axios übergeben wird.

axios(config)

// 发送一个 POST 请求
axios({
 method: &#39;post&#39;,
 url: &#39;/user/12345&#39;,
 data: {
 firstName: &#39;Fred&#39;,
 lastName: &#39;Flintstone&#39;
 }
});
axios(url[, config])

// 发送一个 GET 请求 (GET请求是默认请求模式)
axios(&#39;/user/12345&#39;);

Aliase für Anforderungsmethoden

Der Einfachheit halber wurden Aliase für alle unterstützten Anforderungsmethoden bereitgestellt.

  • axios.request(config)

  • axios.get(url[,config])

  • axios.delete(url[,config])

  • axios.head(url[,config])

  • axios.post( url[,data[,config]])

  • axios.put(url[,data[,config]])

  • axios. patch(url [, data [, config]])

Hinweis

bei Verwendung des Alias method ist es nicht erforderlich, die URL-, Methoden- und Datenattribute in der Konfiguration anzugeben.

Parallelität

Hilfsfunktion zur Bearbeitung gleichzeitiger Anfragen.

  • axios.all (iterierbar)

  • axios.spread (Rückruf)

Instanz erstellen

Sie können eine neue Instanz von axios mit einer benutzerdefinierten Konfiguration erstellen.

axios.create([config])
var instance = axios.create({
 baseURL: &#39;https://some-domain.com/api/&#39;,
 timeout: 1000,
 headers: {&#39;X-Custom-Header&#39;: &#39;foobar&#39;}
});

Instanzmethoden

Die verfügbaren Instanzmethoden sind wie folgt. Die angegebene Konfiguration wird mit der Instanzkonfiguration zusammengeführt.

  • axios#request(config)

  • axios#get(url[,config])

  • axios#delete(url[,config])

  • axios#head(url[,config])

  • axios#post( url[,data[,config]])

  • axios#put(url[,data[,config]])

  • axios# patch(url[,data[,config]])

Konfiguration anfordern

Diese werden verwendet, um Anfragen zu stellen verfügbaren Konfigurationsmöglichkeiten. Es ist nur die URL erforderlich. Wenn keine Methode angegeben ist, lautet die Anforderung standardmäßig GET.

{
 // `url`是将用于请求的服务器URL
 url: &#39;/user&#39;,
 // `method`是发出请求时使用的请求方法
 method: &#39;get&#39;, // 默认
 // `baseURL`将被添加到`url`前面,除非`url`是绝对的。
 // 可以方便地为 axios 的实例设置`baseURL`,以便将相对 URL 传递给该实例的方法。
 baseURL: &#39;https://some-domain.com/api/&#39;,
 // `transformRequest`允许在请求数据发送到服务器之前对其进行更改
 // 这只适用于请求方法&#39;PUT&#39;,&#39;POST&#39;和&#39;PATCH&#39;
 // 数组中的最后一个函数必须返回一个字符串,一个 ArrayBuffer或一个 Stream
 transformRequest: [function (data) {
 // 做任何你想要的数据转换
 return data;
 }],
 // `transformResponse`允许在 then / catch之前对响应数据进行更改
 transformResponse: [function (data) {
 // Do whatever you want to transform the data
 return data;
 }],
 // `headers`是要发送的自定义 headers
 headers: {&#39;X-Requested-With&#39;: &#39;XMLHttpRequest&#39;},
 // `params`是要与请求一起发送的URL参数
 // 必须是纯对象或URLSearchParams对象
 params: {
 ID: 12345
 },
 // `paramsSerializer`是一个可选的函数,负责序列化`params`
 // (e.g. https://www.npmjs.com/package/qs, http://api.jquery.com/jquery.param/)
 paramsSerializer: function(params) {
 return Qs.stringify(params, {arrayFormat: &#39;brackets&#39;})
 },
 // `data`是要作为请求主体发送的数据
 // 仅适用于请求方法“PUT”,“POST”和“PATCH”
 // 当没有设置`transformRequest`时,必须是以下类型之一:
 // - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams
 // - Browser only: FormData, File, Blob
 // - Node only: Stream
 data: {
 firstName: &#39;Fred&#39;
 },
 // `timeout`指定请求超时之前的毫秒数。
 // 如果请求的时间超过&#39;timeout&#39;,请求将被中止。
 timeout: 1000,
 // `withCredentials`指示是否跨站点访问控制请求
 // should be made using credentials
 withCredentials: false, // default
 // `adapter&#39;允许自定义处理请求,这使得测试更容易。
 // 返回一个promise并提供一个有效的响应(参见[response docs](#response-api))
 adapter: function (config) {
 /* ... */
 },
 // `auth&#39;表示应该使用 HTTP 基本认证,并提供凭据。
 // 这将设置一个`Authorization&#39;头,覆盖任何现有的`Authorization&#39;自定义头,使用`headers`设置。
 auth: {
 username: &#39;janedoe&#39;,
 password: &#39;s00pers3cret&#39;
 },
 // “responseType”表示服务器将响应的数据类型
 // 包括 &#39;arraybuffer&#39;, &#39;blob&#39;, &#39;document&#39;, &#39;json&#39;, &#39;text&#39;, &#39;stream&#39;
 responseType: &#39;json&#39;, // default
 //`xsrfCookieName`是要用作 xsrf 令牌的值的cookie的名称
 xsrfCookieName: &#39;XSRF-TOKEN&#39;, // default
 // `xsrfHeaderName`是携带xsrf令牌值的http头的名称
 xsrfHeaderName: &#39;X-XSRF-TOKEN&#39;, // default
 // `onUploadProgress`允许处理上传的进度事件
 onUploadProgress: function (progressEvent) {
 // 使用本地 progress 事件做任何你想要做的
 },
 // `onDownloadProgress`允许处理下载的进度事件
 onDownloadProgress: function (progressEvent) {
 // Do whatever you want with the native progress event
 },
 // `maxContentLength`定义允许的http响应内容的最大大小
 maxContentLength: 2000,
 // `validateStatus`定义是否解析或拒绝给定的promise
 // HTTP响应状态码。如果`validateStatus`返回`true`(或被设置为`null` promise将被解析;否则,promise将被
 // 拒绝。
 validateStatus: function (status) {
 return status >= 200 && status < 300; // default
 },
 // `maxRedirects`定义在node.js中要遵循的重定向的最大数量。
 // 如果设置为0,则不会遵循重定向。
 maxRedirects: 5, // 默认
 // `httpAgent`和`httpsAgent`用于定义在node.js中分别执行http和https请求时使用的自定义代理。
 // 允许配置类似`keepAlive`的选项,
 // 默认情况下不启用。
 httpAgent: new http.Agent({ keepAlive: true }),
 httpsAgent: new https.Agent({ keepAlive: true }),
 // &#39;proxy&#39;定义代理服务器的主机名和端口
 // `auth`表示HTTP Basic auth应该用于连接到代理,并提供credentials。
 // 这将设置一个`Proxy-Authorization` header,覆盖任何使用`headers`设置的现有的`Proxy-Authorization` 自定义 headers。
 proxy: {
 host: &#39;127.0.0.1&#39;,
 port: 9000,
 auth: : {
 username: &#39;mikeymike&#39;,
 password: &#39;rapunz3l&#39;
 }
 },
 // “cancelToken”指定可用于取消请求的取消令牌
 // (see Cancellation section below for details)
 cancelToken: new CancelToken(function (cancel) {
 })
}

Bei Verwendung von then erhalten Sie folgende Antwort:

axios.get(&#39;/user/12345&#39;)
 .then(function(response) {
 console.log(response.data);
 console.log(response.status);
 console.log(response.statusText);
 console.log(response.headers);
 console.log(response.config);
 });

Konfigurationsstandardwerte

Sie können Konfigurationsstandardwerte angeben, die auf jede Anfrage angewendet werden.

Globaler Axios-Standardwert

axios.defaults.baseURL = &#39;https://api.example.com&#39;;
axios.defaults.headers.common[&#39;Authorization&#39;] = AUTH_TOKEN;
axios.defaults.headers.post[&#39;Content-Type&#39;] = &#39;application/x-www-form-urlencoded&#39;;

Benutzerdefinierter Instanzstandardwert

//在创建实例时设置配置默认值
var instance = axios.create({
 baseURL:&#39;https://api.example.com&#39;
});
 
//在实例创建后改变默认值
instance.defaults.headers.common [&#39;Authorization&#39;] = AUTH_TOKEN;

Konfigurationsprioritätsreihenfolge

Die Konfiguration wird mit der Prioritätsreihenfolge zusammengeführt. Die Reihenfolge besteht aus den Bibliotheksstandardwerten in lib/defaults.js, dann dem Standardattribut der Instanz und schließlich den Konfigurationsparametern der Anforderung. Letzteres wird Vorrang vor Ersterem haben. Hier ist ein Beispiel.

//使用库提供的配置默认值创建实例
//此时,超时配置值为`0`,这是库的默认值
var instance = axios.create();
 
//覆盖库的超时默认值
//现在所有请求将在超时前等待2.5秒
instance.defaults.timeout = 2500;
 
//覆盖此请求的超时,因为它知道需要很长时间
instance.get(&#39;/ longRequest&#39;,{
 timeout:5000
});

拦截器

你可以截取请求或响应在被 then 或者 catch 处理之前

//添加请求拦截器
axios.interceptors.request.use(function(config){
  //在发送请求之前做某事
  return config;
 },function(error){
  //请求错误时做些事
  return Promise.reject(error);
 });
 
//添加响应拦截器
axios.interceptors.response.use(function(response){
  //对响应数据做些事
  return response;
 },function(error){
  //请求错误时做些事
  return Promise.reject(error);
 });

如果你以后可能需要删除拦截器。

var myInterceptor = axios.interceptors.request.use(function () {/*...*/});
axios.interceptors.request.eject(myInterceptor);
你可以将拦截器添加到axios的自定义实例。

var instance = axios.create();
instance.interceptors.request.use(function () {/*...*/});

处理错误

axios.get(&#39;/ user / 12345&#39;)
 .catch(function(error){
  if(error.response){
  //请求已发出,但服务器使用状态代码进行响应
  //落在2xx的范围之外
  console.log(error.response.data);
  console.log(error.response.status);
  console.log(error.response.headers);
  } else {
  //在设置触发错误的请求时发生了错误
  console.log(&#39;Error&#39;,error.message);
  }}
  console.log(error.config);
 });

您可以使用validateStatus配置选项定义自定义HTTP状态码错误范围。

axios.get(&#39;/ user / 12345&#39;,{
 validateStatus:function(status){
  return status < 500; //仅当状态代码大于或等于500时拒绝
 }}
})

消除

您可以使用取消令牌取消请求。

axios cancel token API基于可取消的promise提议,目前处于阶段1。

您可以使用CancelToken.source工厂创建一个取消令牌,如下所示:

var CancelToken = axios.CancelToken;
var source = CancelToken.source();
axios.get(&#39;/user/12345&#39;, {
 cancelToken: source.token
}).catch(function(thrown) {
 if (axios.isCancel(thrown)) {
 console.log(&#39;Request canceled&#39;, thrown.message);
 } else {
 // 处理错误
 }
});
//取消请求(消息参数是可选的)
source.cancel(&#39;操作被用户取消。&#39;);

您还可以通过将执行器函数传递给CancelToken构造函数来创建取消令牌:

var CancelToken = axios.CancelToken;
var cancel;
 
axios.get(&#39;/ user / 12345&#39;,{
 cancelToken:new CancelToken(function executor(c){
  //一个执行器函数接收一个取消函数作为参数
  cancel = c;
 })
});
 
// 取消请求
clear();

注意:您可以使用相同的取消令牌取消几个请求。

使用application / x-www-form-urlencoded格式

默认情况下,axios将JavaScript对象序列化为JSON。 要以应用程序/ x-www-form-urlencoded格式发送数据,您可以使用以下选项之一。

浏览器

在浏览器中,您可以使用URLSearchParams API,如下所示:

var params = new URLSearchParams();
params.append(&#39;param1&#39;, &#39;value1&#39;);
params.append(&#39;param2&#39;, &#39;value2&#39;);
axios.post(&#39;/foo&#39;, params);

请注意,所有浏览器都不支持URLSearchParams,但是有一个polyfill可用(确保polyfill全局环境)。

或者,您可以使用qs库对数据进行编码:

var qs = require(&#39;qs&#39;);
axios.post(&#39;/foo&#39;, qs.stringify({ &#39;bar&#39;: 123 });

Node.js

在node.js中,可以使用querystring模块,如下所示:

var querystring = require(&#39;querystring&#39;);
axios.post(&#39;http://something.com/&#39;, querystring.stringify({ foo: &#39;bar&#39; });

你也可以使用qs库。

Promise

axios 依赖本机要支持ES6 Promise实现。 如果您的环境不支持ES6 Promises,您可以使用polyfill。

TypeScript

axios包括TypeScript定义。

import axios from &#39;axios&#39;;
axios.get(&#39;/user?ID=12345&#39;);

axios在很大程度上受到Angular提供的$http服务的启发。 最终,axios努力提供一个在Angular外使用的独立的$http-like服务。

Das obige ist der detaillierte Inhalt vonBringen Sie Ihnen bei, wie man Axios lernt. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn