axios 使用記錄:
1.執行get請求
案例:請求'
方式一:不帶引數
axios.get('')
.then(function (response) ) .catch(function (error) );
方式二:帶引數
axios.get('', )
.then(function (response) ).catch(function (error) );
方式三:
axios().then(res => )
2.執行post請求
方式一:
axios.post('', )
.then(function (response) )
.catch(function (error) );
3.執行多個併發請求
function getuseraccount()
function getuserpermissions()
axios.all([getuseraccount(), getuserpermissions()])
.then(axios.spread(function (acct, perms) ));
4.可以通過向 axios 傳遞相關配置來建立請求
axios(config)
// 傳送 post 請求
axios(
});// 獲取遠端
axios()
.then(function(response) );
vue中axios的使用 學習記錄
用的是vue cli3.x 如果是3以下的版本,需解除安裝重灌 解除安裝命令npm uninstall g vue cli 3.x安裝命令npm install g vue cli建立專案vue create 專案名稱啟動專案npm run serve安裝axiosnpm add axiosaxio...
Android studio第一次使用記錄
一 建立工程 這邊有模板可以選擇,可以直接選擇empty activity。二 配置 應用名稱 程式包名稱 本地位址 三 進入工程 首先布局layout 上圖各部分收縮省略圖 線性布局命令 linearlayout 插圖 imageview android layout width wrap con...
記錄第一次使用Hexo
記錄用github page搭建個人部落格 第一步 在github上新建個人 第二步 在本地搭建hexo框架 hexo官網鏈結 進入官網文件可以看到整個詳細的流程 第三步 為github page設定主題 hexo themes link 我選用的是fechin的diaspora主題,主題樣式乾淨,...