您好,登錄后才能下訂單哦!
前言
最近在學習axios,在使用過程遇到了一些問題,覺著有必要給大家分享下,關于axios的基本知識大家可以參考這篇文章:axios基本入門用法教程 ,下面話不多說了,來一起看看詳細的介紹吧。
問題
相信很多人在用Vue使用別人的組件時,會用到 Vue.use()
。例如:Vue.use(VueRouter)
、 Vue.use(MintUI)
。但是用 axios時,就不需要用 Vue.use(axios)
,就能直接使用。那這是為什么吶?
答案
因為 axios 沒有 install。
什么意思呢?接下來我們自定義一個需要 Vue.use()
的組件,也就是有 install 的組件,看完之后就明白了。
定義組件
生成模版 vue init webpack-simple custom-global-component
custom-global-component 為新建的文件夾名稱
然后一路回車
cd custom-global-component 進入該文件夾
npm install 安裝本次需要的模塊
npm run dev 運行項目
如果能正常打開,進行下一步
這是當前項目目錄:
項目目錄
1.創建如下圖中的文件夾和文件
項目目錄
2.在 Loading.vue 中定義一個組件
<template> <div class="loading-box"> Loading... </div> </template>
3.在 jndex.js 中 引入 Loading.vue ,并導出
// 引入組件 import LoadingComponent from './loading.vue' // 定義 Loading 對象 const Loading={ // install 是默認的方法。當外界在 use 這個組件的時候,就會調用本身的 install 方法,同時傳一個 Vue 這個類的參數。 install:function(Vue){ Vue.component('Loading',LoadingComponent) } } // 導出 export default Loading
4.在 main.js 中引入 loading 文件下的 index
// 其中'./components/loading/index' 的 /index 可以不寫,webpack會自動找到并加載 index 。如果是其他的名字就需要寫上。 import Loading from './components/loading/index' // 這時需要 use(Loading),如果不寫 Vue.use()的話,瀏覽器會報錯,大家可以試一下 Vue.use(Loading)
5.在App.vue里面寫入定義好的組件標簽 <Loading></Loading>
<template> <div id="app"> <h2>vue-loading</h2> <Loading></Loading> </div> </template>
6.看到這兒大家應該就明白了吧,用 axios時,之所以不需要用 Vue.use(axios)
,就能直接使用,是因為開發者在封裝 axios 時,沒有寫 install 這一步。至于為啥沒寫,那就不得而知了。
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。