這次帶給大家vue-cli引入、設定axios步驟詳解,vue-cli引入、設定axios的注意事項有哪些,以下是實戰案例,一起來看一下。
一、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
npm install @type/axios --save-dev(使用ts编写的需要此声明文件,升级的axios好像不需要了,已经自带)
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
import {AxiosStatic, AxiosInstance } from 'axios' declare module 'vue/types/vue' { interface Vue { $axios: AxiosStatic; } }
var path = require('path') var rootpath = path.resolve(dirname, '../dist') module.exports = rootpath
以上是vue-cli引入、設定axios步驟詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!