前端基礎學習 資料請求之axios的基本使用

2021-10-08 05:32:04 字數 725 閱讀 1199

axios 是專注於網路資料請求的庫。

相比於原生的 xmlhttprequest 物件,axios 簡單易用。

相比於 jquery,axios 更加輕量化,只專注於網路資料請求。

// axios.get('位址', }).then(成功時的處理函式);

axios.

get(

'',}

).then

(function

(res)

);

// axios.post('位址', ).then(成功時的處理函式)

axios.

post

('',)

.then

(function

(res)

);

傳送get和post的區別:

axios(}

).then

(function

(res)

);

axios(}

).then

(function

(res)

);

vue學習之ajax 簡單快速使用axios

vue2.x 推薦使用axios 1.首先使用安裝 npm install axios s 2.在哪用在哪引入 import axios from axios 或則在main.js 中引入 在申明 vue.prototype.http axios 然後再其子元件中用this關鍵字 呼叫 http此時...

前端資料請求 及mock

ajax傳送的get請求 ajax ajax傳送的post請求 ajax script 具體 src script 執行 get 請求 axios.get user?id 12345 then function response catch function error 可選地,上面的請求可以這樣做...

前端基礎之HTML

html 作為超文字標記語言主要是用來製作靜態頁面 html有標準 html4 標籤 原生標籤.標籤 橫線.結構標籤 字型標籤 使用 文字 標籤的屬性 標籤 屬性名 屬性值 屬性名 屬性值 段落標籤 p標籤 字型加粗標籤 b標籤 字型斜體標籤 i標籤 字型下劃線 u標籤 居中標籤 標籤 html的標...