axios 全攻略之 API

2021-08-08 19:39:53 字數 1730 閱讀 6149

你可以在 request 中使用具體的配置項

傳送乙個 post 請求

axios(

});

請求一張遠端

axios()

.then(function

(response)

);

在 axios 中使用 axios(url[, config]) 方式來配置選項

比如乙個預設的 get 請求

axios('/user/12345');
axios 提供了一系列簡潔的方法來支援所有的請求

axios.request(config)

axios.get(url[, config])

axios.delete(url[, config])

axios.head(url[, config])

axios.options(url[, config])

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

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

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

你可以使用如下的兩個方法來併發的執行非同步請求,當最後乙個請求之後才執行後面的**

axios.all(iterable)

axios.spread(callback)

這裡舉例說明

function

getuseraccount

() function

getuserpermissions

() axios.all([getuseraccount(), getuserpermissions()])

.then(axios.spread(function

(acct, perms) ));

你能夠通過自定義的配置建立乙個 axios 例項

axios.create([config])

var instance = axios.create(

});

可以使用的例項如下所示,指定的配置會和例項配置合併

axios#request(config)

axios#get(url[, config])

axios#delete(url[, config])

axios#head(url[, config])

axios#options(url[, config])

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

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

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

測試全攻略

include class1.h include include cppunit testrunner.h include cppunit testresult.h include cppunit testresultcollector.h include cppunit extensions he...

Ubuntu 藍芽全攻略

ubuntu 的藍芽支援相信很多同學都在使用吧,插上就用,連個手機傳個檔案啊什麼的非常方便。但是你有沒有想過壓榨出其更大的潛能呢?有沒有想過坐到電腦前,開啟藍 牙連上手機,戴上耳麥,直接就通過電腦來接打 了呢?或者連上你的 ipod touch,聲就從電腦的音箱中飄出了呢?當然,windows 系統...

PcAnywhere使用全攻略

一聽名字就知道 pcanywhere 是什麼意思了,pcanywhere是一套老牌遠端控制軟體,可執行在windows95 98 nt 2000 me下。使用者可以通過主控或被控的方 式,遠端管理已連線上網際網路或內聯網的計算機,而且管理方式為what s you see what s you ge...