真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何在vue項目中使用封裝后的axios-創(chuàng)新互聯(lián)

這篇文章給大家介紹如何在vue項目中使用封裝后的axios,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

創(chuàng)新互聯(lián)專注于懷來企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站開發(fā),商城建設(shè)。懷來網(wǎng)站建設(shè)公司,為懷來等地區(qū)提供建站服務(wù)。全流程按需規(guī)劃網(wǎng)站,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

為什么要使用Vue

Vue是一款友好的、多用途且高性能的JavaScript框架,使用vue可以創(chuàng)建可維護性和可測試性更強的代碼庫,Vue允許可以將一個網(wǎng)頁分割成可復(fù)用的組件,每個組件都包含屬于自己的HTML、CSS、JavaScript,以用來渲染網(wǎng)頁中相應(yīng)的地方,所以越來越多的前端開發(fā)者使用vue。

方法如下

1. vue安裝axios

npm install axios -S
	或者
	npm i axios -S

2. 在main.js進行全局引入

import axios from 'axios'
	Vue.prototype.$axios = axios //將axios綁定到vue的原型上

3. 配置跨域 在根目錄下vue.config.js里邊

module.exports = {
	 publicPath: './',
	 //配置跨域請求
	 devServer: {
	  open: true, //是否自動打開瀏覽器
	  https: false, //是否開啟https
	  hotOnly: false,
	  proxy: { // 配置跨域
	   '/api': {
	    target: 'http://********', //請求接口域名 
	    ws: true,
	    secure: false,
	    changOrigin: true, //是否允許跨越
	    pathRewrite: {
	     '^/api': ''
	    }
	   }
	  },
	  before: app => { }
	 }
	}

4. 在src子目錄下的api文件夾下創(chuàng)建api.js文件進行簡單的封裝axios

import axios from 'axios'
//這里引用了element的loading全屏加載
import { Loading } from "element-ui";

const service = axios.create({
 baseURL: '/',
 timeout: 30000 // 設(shè)置請求超時時間
})
let loading = "";
// 請求攔截器
service.interceptors.request.use(
 (config) => {
  // 在請求發(fā)送之前做一些處理
  if (!(config.headers['Content-Type'])) {
   loading = Loading.service({
    lock: true,
    text: "加載中...",
    spinner: "el-icon-loading",
    background: "rgba(255,255,255,0.7)",
    customClass: "request-loading",
   });
   if (config.method == 'post') {
    config.headers['Content-Type'] =
     'application/json;charset=UTF-8'
    for (var key in config.data) {
     if (config.data[key] === '') {
      delete config.data[key]
     }
    }
    config.data = JSON.stringify(config.data)
   } else {
    config.headers['Content-Type'] =
     'application/x-www-form-urlencoded;charset=UTF-8'
    config.data = JSON.stringify(config.data)
   }
  }
  const token = "token"
  // 讓每個請求攜帶token-- ['X-Token']為自定義key 請根據(jù)實際情況自行修改
  if (token) {
   config.headers['Authorization'] = token
  }
  return config
 },
 (error) => {
  loading.close();
  // 發(fā)送失敗
  console.log(error)
  return Promise.reject(error)
 }
)

// 響應(yīng)攔截器
service.interceptors.response.use(
 (response) => {

  loading.close();
  // dataAxios 是 axios 返回數(shù)據(jù)中的 data
  // loadingInstance.close();
  const dataAxios = response.data
  // 這個狀態(tài)碼是和后端約定的

  return dataAxios
 },
 (error) => {
  return Promise.reject(error)
 }
)

	export default service

5. 在api文件夾下創(chuàng)建http文件

 // 引入封裝好的axios
 // ps:如果沒有封裝,正常引入axios即可
  import axios from "./api";
	// 	/api為配置跨域的路徑變量
  let reportUpload= '/api/report/upload'
  export const Upload= () => {
   return axios.get( reportUpload )
  }

6. 在頁面中調(diào)用接口

// 引入封裝好的接口
 	import { Upload} from "@/api/http.js"; 

// 調(diào)用時使用
 async Upload() {
  let { result } = await getlist ();
  	console.log(result)
 },

關(guān)于如何在vue項目中使用封裝后的axios就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


分享題目:如何在vue項目中使用封裝后的axios-創(chuàng)新互聯(lián)
標題網(wǎng)址:http://weahome.cn/article/dhiece.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部