91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue-cli 引入、配置axios的方法

發布時間:2020-08-24 16:56:20 來源:腳本之家 閱讀:251 作者:zeroyulong 欄目:web開發

一、npm 安裝axios,文件根目錄下安裝,指令如下

npm install axios --save-dev 

二、修改原型鏈,在main.js中引入axios

import axios from 'axios' 

接著將axios改寫為Vue的原型屬性,

Vue.prototype.$http=axios 

這樣之后就可在每個組件的methods中調用$http命令完成數據請求

三、在組件中使用

methods: { 
   get(){ 
    this.$http({ 
     method:'get', 
     url:'/url', 
     data:{} 
    }).then(function(res){ 
     console.log(res) 
    }).catch(function(err){ 
     console.log(err) 
    }) 
     
    this.$http.get('/url').then(function(res){ 
     console.log(res) 
    }).catch(function(err){ 
     console.log(err) 
    }) 
   }    
}        

有關axios的配置請參考如下文檔,點擊打開鏈接

下面給大家介紹下vue-cli配置axios的方法

1.

npm install axios --save

2.

npm install @type/axios --save-dev(使用ts編寫的需要此聲明文件,升級的axios好像不需要了,已經自帶)

3.

在src目錄下添加axios.ts文件,內容:

import axios from 'axios'
import {Notification} from 'element-ui'
import store from './store/index'
import buildconf from '../config/build.rootpath.js'
axios.defaults.withCredentials = true;
axios.defaults.baseURL = buildconf.serverUrl
// axios.defaults.baseURL = 'http://gsblackwidow.chinacloudsites.cn/'
axios.interceptors.request.use(function(config) {
 // document.getElementById('g-loader').style.display = 'flex'
 store.commit('requestModify', 1)
 return config;
}, function(error){
 return Promise.reject(error)
})
axios.interceptors.response.use(function(response){
 store.commit('requestModify', -1)
 // document.getElementById('g-loader').style.display = 'none' 
 return response.data;
}, function(error){
 store.commit('requestModify', -1) 
 // document.getElementById('g-loader').style.display = 'none'  
 if(error.response.status === 401){
  Notification({
   title: '權限無效',
   message: '您的用戶信息已經失效, 請重新登錄',
   type: 'warning',
   offset: 48
  });
  window.location.href = '/#/login'
 }else{
  Notification({
   title: '請求錯誤',
   message: `${error.response.status} \n ${error.config.url}`,
   type: 'error',
   offset: 48,
  })
 }
 return Promise.reject(error)
})
export default axios

4.

types文件夾中新建vue.d.ts文件,內容:

import {AxiosStatic, AxiosInstance } from 'axios'
declare module 'vue/types/vue' {
 interface Vue {
  $axios: AxiosStatic;
 }
}

這樣就可以在各個模塊中通過this.$axios來使用axios了

其中axios中:

1. build.rootpath.js內容:

var path = require('path')
var rootpath = path.resolve(__dirname, '../dist')
module.exports = rootpath

2. store是vuex的文件,所以要事先安裝vuex

總結

以上所述是小編給大家介紹的vue-cli 引入、配置axios的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

托克托县| 汕尾市| 芜湖县| 武鸣县| 周口市| 遂平县| 海兴县| 察隅县| 蓬安县| 乾安县| 屏边| 石门县| 昔阳县| 河源市| 拜城县| 巴马| 三穗县| 双牌县| 博爱县| 沽源县| 乌海市| 潍坊市| 九江市| 鄂伦春自治旗| 开平市| 怀安县| 上蔡县| 十堰市| 华阴市| 廉江市| 沂水县| 兖州市| 大余县| 关岭| 丹江口市| 武穴市| 社会| 双牌县| 咸阳市| 如皋市| 惠水县|