Vue 中使用axios進行資料請求

2021-09-24 20:12:07 字數 567 閱讀 8639

剛開始看vue,目前還停止在會使用api,做個筆記。

在使用axios進行網路請求時需要安裝axios庫,

如果使用的是npm方式,需要在中進行引用

1.普通的get請求 通過&進行引數的拼接

//普通的網路請求

axios.get('張&age=30').then(function(reponse)).catch(function(error)).finally(function());

2.get請求 通過params進行引數傳遞

axios.get('',

}).then(function(reponse)).catch(function(error)).finally(function());

axios.post('',).then(function(reponse)).catch(function(error)).finally(function());
學習部落格:

vue學習1 3 安裝並使用axios進行資料請求

一,安裝axios模組。首先需要開啟控制台,cd到專案資料夾 二,安裝完成之後需要將axios元件引入需要使用的頁面。import axios from axios 三,請求使用。官方文件 get請求 為給定 id 的 user 建立請求 axios.get user?id 12345 then f...

vue與php通過axios進行資料互動

現在太忙,貼一下 有空再詳細寫一下。下面是親測可用的 可以參考 方法一 只需要很小的改動,把它變成字串提交就好。var params ajax encodeuricomponent json.stringify axios.post test.php params then res console....

React專案中中使用redux進行資料管理

二 在src目錄下建立store資料夾,再在store資料夾中建立index.js檔案和reducer.js檔案 三 在剛剛建立好的index.js檔案中引入 import from redux import reducer from reducer const store createstore ...