axios的GET和POST資料請求

2022-06-01 07:27:11 字數 639 閱讀 8818

axios

第三方封裝庫

特點

轉換請求和響應資料

自動轉換為json資料

客戶端支援防止xsrf

axios會自動封裝資料

使用

jsonplaceholder

拷貝線上相似資料

後端介面的請求

axios-get請求:

axios.get(url, 配置項).then().catch()

example:

axios.get(`url`,

}).then( res => ).catch( error => console.log( error ))

axios-post請求:

axios.post(url,配置).then().catch()

example:

axios.post(`url`,).then( res => ).catch( err => console.log( err ))

使用axios傳送get和post請求

axios 是乙個基於 promise 的 http 庫,可以用在瀏覽器和 node.js 中。features npm i axios s import axios from axios 配置axios例項 axios.defaults.baseurl 自動加在url前面,除非url是乙個絕對ur...

axios 封裝 get方法和post方法

最近在做乙個實戰專案,然後需要封裝方法,我上次使用的方法都不行,或者報錯沒有定義,然後就準備去網上找,找來找去還是就這個方法。import axios from axios 返回乙個promise 傳送post請求 export function fetchpost url,params err c...

axios中get請求與post請求的簡單函式封裝

首先講講axios的get請求。axios.get user then response catch error get請求如何傳參想必大家應該都知道的 一是可以拼接在url上 axios.get user?id 12345 then response catch error 二是axios可以以鍵...