Vue axios設定訪問基礎路徑

2021-08-08 20:06:20 字數 665 閱讀 1237

看過axios的官方文件後配置變得簡單:

在main.js 做如下配置:

import

axios

from

'axios'

axios

.defaults

.baseurl = '

.42.24

:8080/sf-cloud-web'

vue.prototype

.axios = axios

最後一行是將axios配置到vue原型中,使用方法為:

this.axios.

get(

'/test/1'

).then

(function(response) {})

可能會遇到下面的報錯:

isurlsameorigin.js?cf95:57 uncaught (in promise) typeerror: cannot

read property 'protocol' of undefined

這是因為axios不是vue外掛程式,不能使用vue.use(axios) 方式引用,需要使用上述原型方式引入

vue axios基礎使用以及qs

axios 簡介 axios 是乙個基於promise 用於瀏覽器和 nodejs 的 http 客戶端,它本身具有以下特徵 1,從瀏覽器中建立 xmlhttprequest 2,從 node.js 發出 http 請求 3,支援 promise api 4,攔截請求和響應 5,轉換請求和響應資料 ...

MVC3路由設定訪問字尾 html jsp

c code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 public static ...

設定Eclipse的workspace路徑

首次啟動eclipse myeclipse時,會彈出 workspace launcher 對話方塊,提示設定workspace路徑.設定好路徑後,若勾選了 use this as the default and do not ask again 那麼以後再啟動時就不會有提示,直接進入預設工作空間....