html中使用js將axios請求封裝

2021-09-29 03:48:06 字數 563 閱讀 9548

1、新建 httprequest.js 檔案,定義如下方法:

//axios封裝post請求

function axiospostrequst(url,data)

return ret;

}],header:

}).then(resp=> ).catch(error=>);

return result;

}//get請求

function axiosgetrequst(url) ).then(function (resp) ).catch(function (error) );

return result;

}

2、在html中引入vue.js、axios.js、httprequest.js

3、在js檔案中使用封裝好的方法

var datas = ;

consloe.log(result);

});

ok,大功告成,這樣就不用每次請求時寫一大串請求頭、請求體了。

1 HTML和JS中使用router

學習vue router的一些學習筆記,所有筆記內容請看 vue router學習筆記 方法 1 使用router link 元件進行導航to 屬性指定鏈結。router link 會被預設渲染程乙個 a 標籤 2 router view 為路由出口,路由匹配到的元件被渲染在這裡 doctype h...

VUE中使用axios做ajax請求

vue2.0之後,就不再對vue resource更新,而是推薦使用axios 1.安裝 axios npm install axios或 bower install axios2.在要使用的檔案中引入axios import axios from axios 3.使用axios做請求 可以通過向a...

在HTML中使用SVG

如何在html中顯示 svg?有四種方式能夠在html 中顯示svg 第一種 embed 標籤這種標籤被所有主流的瀏覽器支援,而且優點是支援指令碼使用。這種標籤是adobe svg viewer 所倡導的使用方法,但是它不是 xhtml 的規範。語法為 例項 svg檔名稱為a.svg,如下 html...