久久精品五月,日韩不卡视频在线观看,国产精品videossex久久发布 ,久久av综合

站長資訊網
最全最豐富的資訊網站

聊聊vite+vue3.0+ts中如何封裝axios?

聊聊vite+vue3.0+ts中如何封裝axios?

目前,關于vue中使用axios的作為前端和后端接口交互工具的用法文章,網絡某博客上數不勝數。因為項目從0到1開始需要基于vite+vue3.0+ts中封裝axios,所以今天讓小編來給大家安排axios整合vite+vue3.0+ts的具體封裝步驟。記錄一下自己封裝步驟,跟著我的步伐,擼起來。。。(學習視頻分享:vue視頻教程)

以下內容均基于下方視頻完結后的擴展:

2021最新最詳細的Vite+vue3+Volar+Ts+Element-plus框架學習項目視頻

1、安裝axios

npm i axios

注意:這里的安裝命令就是默認安裝最新版本的axios

2、封裝請求錯誤代碼提示error-code-type.ts

  • 代碼如下:
export const errorCodeType = function(code:string):string{     let errMessage:string = "未知錯誤"     switch (code) {         case 400:          errMessage = '錯誤的請求'          break          case 401:          errMessage = '未授權,請重新登錄'          break         case 403:          errMessage = '拒絕訪問'          break          case 404:          errMessage = '請求錯誤,未找到該資源'          break          case 405:          errMessage = '請求方法未允許'          break          case 408:          errMessage = '請求超時'          break          case 500:          errMessage = '服務器端出錯'          break          case 501:          errMessage = '網絡未實現'          break          case 502:          errMessage = '網絡錯誤'          break          case 503:          errMessage = '服務不可用'          break          case 504:          errMessage = '網絡超時'          break          case 505:          errMessage = 'http版本不支持該請求'          break          default:          errMessage = `其他連接錯誤 --${code}`     }     return errMessage }

3、封裝request.ts

這里用到的element-plus大家可以參考其官網安裝即可,傳送門:

element-plus官網

安裝命令: npm install element-plus --save
  • 代碼如下:
import axios from 'axios'; import { errorCodeType } from '@/script/utils/error-code-type'; import { ElMessage, ElLoading } from 'element-plus';  // 創建axios實例 const service = axios.create({     // 服務接口請求     baseURL: import.meta.env.VITE_APP_BASE_API,     // 超時設置     // timeout: 15000,     headers:{'Content-Type':'application/json;charset=utf-8'} })  let loading:any; //正在請求的數量 let requestCount:number = 0 //顯示loading const showLoading = () => {     if (requestCount === 0 && !loading) {         //加載中顯示樣式可以自行修改         loading = ElLoading.service({             text: "拼命加載中,請稍后...",             background: 'rgba(0, 0, 0, 0.7)',             spinner: 'el-icon-loading',         })     }     requestCount++; } //隱藏loading const hideLoading = () => {     requestCount--     if (requestCount == 0) {         loading.close()     } }  // 請求攔截 service.interceptors.request.use(config => {     showLoading()     // 是否需要設置 token放在請求頭     // config.headers['Authorization'] = 'Bearer ' + getToken() // 讓每個請求攜帶自定義token 請根據實際情況自行修改     // get請求映射params參數     if (config.method === 'get' && config.params) {         let url = config.url + '?';         for (const propName of Object.keys(config.params)) {             const value = config.params[propName];             var part = encodeURIComponent(propName) + "=";             if (value !== null && typeof(value) !== "undefined") {                  // 對象處理                 if (typeof value === 'object') {                     for (const key of Object.keys(value)) {                         let params = propName + '[' + key + ']';                         var subPart = encodeURIComponent(params) + "=";                         url += subPart + encodeURIComponent(value[key]) + "&";                     }                 } else {                     url += part + encodeURIComponent(value) + "&";                 }             }         }         url = url.slice(0, -1);         config.params = {};         config.url = url;     }     return config }, error => {     console.log(error)     Promise.reject(error) })  // 響應攔截器 service.interceptors.response.use((res:any) => {         hideLoading()         // 未設置狀態碼則默認成功狀態         const code = res.data['code'] || 200;         // 獲取錯誤信息         const msg = errorCodeType(code) || res.data['msg'] || errorCodeType('default')         if(code === 200){             return Promise.resolve(res.data)         }else{             ElMessage.error(msg)             return Promise.reject(res.data)         }     },     error => {         console.log('err' + error)         hideLoading()         let { message } = error;         if (message == "Network Error") {             message = "后端接口連接異常";         }         else if (message.includes("timeout")) {             message = "系統接口請求超時";         }         else if (message.includes("Request failed with status code")) {             message = "系統接口" + message.substr(message.length - 3) + "異常";         }         ElMessage.error({             message: message,             duration: 5 * 1000         })         return Promise.reject(error)     } )  export default service;

4、自動導入vue3相關函數(auto-imports.d.ts)

  • auto-imports.d.ts放在src目錄下
  • 注意:需要安裝yarn add unplugin-auto-import或者npm i unplugin-auto-import -D
  • 安裝完重啟項目
  • 代碼如下:
declare global {   const computed: typeof import('vue')['computed']   const createApp: typeof import('vue')['createApp']   const customRef: typeof import('vue')['customRef']   const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']   const defineComponent: typeof import('vue')['defineComponent']   const effectScope: typeof import('vue')['effectScope']   const EffectScope: typeof import('vue')['EffectScope']   const getCurrentInstance: typeof import('vue')['getCurrentInstance']   const getCurrentScope: typeof import('vue')['getCurrentScope']   const h: typeof import('vue')['h']   const inject: typeof import('vue')['inject']   const isReadonly: typeof import('vue')['isReadonly']   const isRef: typeof import('vue')['isRef']   const markRaw: typeof import('vue')['markRaw']   const nextTick: typeof import('vue')['nextTick']   const onActivated: typeof import('vue')['onActivated']   const onBeforeMount: typeof import('vue')['onBeforeMount']   const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']   const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']   const onDeactivated: typeof import('vue')['onDeactivated']   const onErrorCaptured: typeof import('vue')['onErrorCaptured']   const onMounted: typeof import('vue')['onMounted']   const onRenderTracked: typeof import('vue')['onRenderTracked']   const onRenderTriggered: typeof import('vue')['onRenderTriggered']   const onScopeDispose: typeof import('vue')['onScopeDispose']   const onServerPrefetch: typeof import('vue')['onServerPrefetch']   const onUnmounted: typeof import('vue')['onUnmounted']   const onUpdated: typeof import('vue')['onUpdated']   const provide: typeof import('vue')['provide']   const reactive: typeof import('vue')['reactive']   const readonly: typeof import('vue')['readonly']   const ref: typeof import('vue')['ref']   const resolveComponent: typeof import('vue')['resolveComponent']   const shallowReactive: typeof import('vue')['shallowReactive']   const shallowReadonly: typeof import('vue')['shallowReadonly']   const shallowRef: typeof import('vue')['shallowRef']   const toRaw: typeof import('vue')['toRaw']   const toRef: typeof import('vue')['toRef']   const toRefs: typeof import('vue')['toRefs']   const triggerRef: typeof import('vue')['triggerRef']   const unref: typeof import('vue')['unref']   const useAttrs: typeof import('vue')['useAttrs']   const useCssModule: typeof import('vue')['useCssModule']   const useCssVars: typeof import('vue')['useCssVars']   const useSlots: typeof import('vue')['useSlots']   const watch: typeof import('vue')['watch']   const watchEffect: typeof import('vue')['watchEffect'] } export {}

5、自動導入Element Plus 相關函數(components.d.ts)

  • 注意:需要安裝npm i unplugin-vue-components -D或者yarn add unplugin-vue-components
  • 安裝完重啟項目
import '@vue/runtime-core'  declare module '@vue/runtime-core' {   export interface GlobalComponents {     ElCard: typeof import('element-plus/es')['ElCard']     ElCol: typeof import('element-plus/es')['ElCol']     ElContainer: typeof import('element-plus/es')['ElContainer']     ElFooter: typeof import('element-plus/es')['ElFooter']     ElHeader: typeof import('element-plus/es')['ElHeader']     ElMain: typeof import('element-plus/es')['ElMain']     ElOption: typeof import('element-plus/es')['ElOption']     ElPagination: typeof import('element-plus/es')['ElPagination']     ElRadioButton: typeof import('element-plus/es')['ElRadioButton']     ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup']     ElRow: typeof import('element-plus/es')['ElRow']     ElSelect: typeof import('element-plus/es')['ElSelect']     ElTable: typeof import('element-plus/es')['ElTable']     ElTableColumn: typeof import('element-plus/es')['ElTableColumn']     Loading: typeof import('element-plus/es')['ElLoadingDirective']   } }  export {}

6、vite.config.ts文件配置

  • 注意:需要安裝npm i unplugin-icons或者yarn add unplugin-icons
import { defineConfig } from 'vite'; import vue from '@vitejs/plugin-vue'; import Icons from "unplugin-icons/vite"; import IconsResolver from "unplugin-icons/resolver"; import AutoImport from "unplugin-auto-import/vite"; import Components from "unplugin-vue-components/vite"; import { ElementPlusResolver } from "unplugin-vue-components/resolvers"; import { loadEnv } from 'vite'; import path from 'path'; // 路徑 const pathSrc = path.resolve(__dirname,'src')  // https://vitejs.dev/config/ export default({ command, mode }) => {     return defineConfig({         plugins: [             vue(),             AutoImport({                 // Auto import functions from Vue, e.g. ref, reactive, toRef...                 // 自動導入 Vue 相關函數,如:ref, reactive, toRef 等                 imports: ["vue"],                  // Auto import functions from Element Plus, e.g. ElMessage, ElMessageBox... (with style)                 // 自動導入 Element Plus 相關函數,如:ElMessage, ElMessageBox... (帶樣式)                 resolvers: [                     ElementPlusResolver(),                      // Auto import icon components                     // 自動導入圖標組件                     IconsResolver({                         prefix: "Icon",                     }),                 ],                  dts: path.resolve(pathSrc, "auto-imports.d.ts"),             }),                          // 自動導入 Element Plus 組件             Components({                 resolvers: [                     // Auto register icon components                     // 自動注冊圖標組件                     IconsResolver({                         enabledCollections: ["ep"],                     }),                     // Auto register Element Plus components                                         ElementPlusResolver(),                 ],                  dts: path.resolve(pathSrc, "components.d.ts"),             }),             // 圖標             Icons({                 autoInstall: true,             }),         ],         server:{             host: '127.0.0.1',             //port: Number(loadEnv(mode, process.cwd()).VITE_APP_PORT),             port: 3000,             strictPort: true, // 端口被占用直接退出             https: false,             open: true,// 在開發服務器啟動時自動在瀏覽器中打開應用程序             proxy: {                 // 字符串簡寫寫法                 '^/api': {                     target: mode==='development'?loadEnv(mode, process.cwd()).VITE_APP_DEV_URL:loadEnv(mode, process.cwd()).VITE_APP_PROD_URL,                     changeOrigin: true,                     rewrite: (path) => path.replace(/^/api/, '')                 }             },             hmr:{                 overlay: false // 屏蔽服務器報錯             }         },         resolve:{             alias:{                 '@': pathSrc,             }         },         css:{             // css預處理器             /*preprocessorOptions: {                 scss: {                     additionalData: '@import "@/assets/styles/global.scss";'                 }             }*/              preprocessorOptions: {                less: {                  charset: false,                  additionalData: '@import "./src/assets/style/global.less";',                 },             },         },         build:{             chunkSizeWarningLimit: 1500, // 分塊打包,分解塊,將大塊分解成更小的塊             rollupOptions: {                 output:{                     manualChunks(id) {                         if (id.includes('node_modules')) {                             return id.toString().split('node_modules/')[1].split('/')[0].toString();                         }                     }                 }             }         }     }) }

7、使用axios封裝

完整的環境變量配置文件.env.production和.env.development

7.1、項目根目錄的development文件內容如下

# 開發環境 VITE_APP_TITLE = "阿綿"  # 端口號  VITE_APP_PORT = "3000"  # 請求接口  VITE_APP_DEV_URL = "http://localhost:8088"  # 前綴  VITE_APP_BASE_API = "/api"

7.2、項目根目錄下的production文件內容如下

# 開發環境  VITE_APP_TITLE = "阿綿"  # 端口號  VITE_APP_PORT = "3000"  # 請求接口  VITE_APP_DEV_URL = "http://localhost:8088"  # 前綴  VITE_APP_BASE_API = "/api"

8、在任何vue文件內使用接口:

  • 注意:這里還有一個PageParams全局分頁對象:

  • page-params.ts

  • 代碼如下:

// 全局統一分頁參數類型聲明  declare interface PageParams {     pageNum: number, pageSize: number, type?: Model, // 可選參數      readonly sort?: string // 只讀可選參數  } interface Model { type?: string } export default PageParams;

總結

本篇討論的主要內容是:

  1. axios整合vite+vue3.0+ts的具體封裝步驟,對于細節方面還沒很細,可以擴展更深入封裝它

(學習視頻分享:web前端開發、編程基礎視頻)

贊(0)
分享到: 更多 (0)
?
網站地圖   滬ICP備18035694號-2    滬公網安備31011702889846號
久久精品五月,日韩不卡视频在线观看,国产精品videossex久久发布 ,久久av综合
精品理论电影在线| 欧美 日韩 国产精品免费观看| 日韩免费一区| 欧美成人基地| 久久精品高清| 国产综合亚洲精品一区二| 欧美另类综合| 日韩中文在线播放| 欧美一区=区三区| 欧美在线亚洲综合一区| 色婷婷精品视频| 夜夜嗨网站十八久久| 亚洲一区二区三区四区五区午夜| 欧美激情麻豆| 精品视频国产| 精品一区91| 欧美1区2区3| 欧美黑人巨大videos精品| 日韩av网站在线观看| 三级欧美在线一区| 最新日韩av| 国产伊人精品| 麻豆精品新av中文字幕| 欧美国产极品| 精品深夜福利视频| 天堂av在线| 久久精品官网| 三级在线观看一区二区| 婷婷久久免费视频| sm久久捆绑调教精品一区| 久久中文字幕av一区二区不卡| 999国产精品视频| 石原莉奈在线亚洲三区| 免费视频一区二区| 日韩精品国产精品| 国产精品一站二站| 国产一区二区精品久| 免费久久精品| 欧美高清不卡| 日韩和欧美一区二区三区| 97久久超碰| 日韩成人精品一区| 伊人网在线播放| 国产欧美丝祙| 国产一区二区三区探花| 老牛影视精品| 亚洲综合图色| 国产精品草草| 国户精品久久久久久久久久久不卡 | 亚洲毛片视频| 亚洲精品日本| 精品国产午夜肉伦伦影院 | 婷婷久久免费视频| 国产一区精品福利| 欧美日韩一区二区三区视频播放| 视频一区视频二区中文字幕| 亚洲制服欧美另类| 欧美亚洲tv| 欧美一级精品| 亚洲狼人精品一区二区三区| 久久亚洲精精品中文字幕| 日韩欧美精品综合| 亚洲区欧美区| 高清一区二区三区av| 久久久久伊人| 老司机精品久久| 国产精品1luya在线播放| 午夜精品一区二区三区国产| 亚洲毛片在线免费| 日韩欧美视频专区| 亚洲欧美在线综合| 亚洲成人不卡| 日韩精品社区| 久久精品福利| 视频一区中文字幕| 精品一区二区三区的国产在线观看| 性一交一乱一区二区洋洋av| 麻豆国产欧美一区二区三区| 久热精品在线| 麻豆久久久久久| 免费人成精品欧美精品| 久久免费影院| 三级一区在线视频先锋| 亲子伦视频一区二区三区| 日韩动漫一区| 9色国产精品| 欧美精品99| 亚洲精选久久| 欧美一区久久久| 羞羞答答国产精品www一本| 91欧美在线| 日韩专区视频网站| 五月天久久久| 国产一区二区三区精品在线观看| 亚州av一区| 日韩一区亚洲二区| 麻豆国产91在线播放| 视频一区二区中文字幕| 欧美色图一区| 麻豆国产精品一区二区三区| 亚洲专区视频| 亚洲免费影院| 日韩免费看片| 国产一区三区在线播放| 亚洲欧洲专区| 亚洲欧洲日本mm| 国产成人精品福利| 国产精品毛片aⅴ一区二区三区| 99视频+国产日韩欧美| 国产一区二区三区探花| 国产精品22p| 青青草91久久久久久久久| 亚洲免费观看高清完整版在线观| 亚洲一级黄色| 国精品一区二区| 精精国产xxxx视频在线野外| а√天堂8资源在线| 久久影视三级福利片| 欧美a级一区二区| 日韩中文字幕无砖| 日本亚洲视频| 日韩中文欧美在线| 天堂成人国产精品一区| 午夜国产精品视频| 麻豆精品视频在线| 欧美国产亚洲精品| 国产欧美自拍一区| 国产精品亚洲综合在线观看| 手机精品视频在线观看| 视频在线观看一区| 亚洲一区国产| 在线看片日韩| 首页亚洲欧美制服丝腿| 亚洲人成网77777色在线播放| 亚洲一区亚洲| 免费在线观看一区二区三区| 日韩视频一区二区三区在线播放免费观看 | 国产极品模特精品一二| 日韩一区二区三免费高清在线观看| 99精品小视频| 日韩欧美一区二区三区在线观看 | 亚洲福利一区| 9国产精品视频| 91成人超碰| 日本欧洲一区二区| 国产在线欧美| 蜜臀久久99精品久久久久久9 | 成人精品动漫一区二区三区| 日韩成人三级| 久久精品国产99久久| 日韩在线不卡| 欧美不卡视频| 日韩一区二区免费看| 日韩在线视频一区二区三区| 日韩精品欧美大片| 国产成人黄色| 97se综合| 亚洲欧美日韩精品一区二区| 亚洲免费在线| 国产精品一国产精品| 久久尤物视频| 日韩在线一区二区| 日本午夜精品一区二区三区电影| 91精品尤物| 超碰在线99| 999久久久免费精品国产| 免费久久精品视频| 久久国产人妖系列| 人人精品亚洲| 国产婷婷精品| 91免费精品国偷自产在线在线| 综合国产视频| 国产在线不卡一区二区三区| 久久久精品五月天| 一区二区三区网站| 国产麻豆一区二区三区精品视频| 欧美成人一二区| 91九色精品| 亚洲精品在线国产| 精品美女在线视频| 91精品一区国产高清在线gif| 亚洲另类av| 捆绑调教美女网站视频一区| 好看的亚洲午夜视频在线| 视频一区日韩| 电影天堂国产精品| 蜜臀久久99精品久久一区二区| 日韩欧美2区| 欧美丰满日韩| 亚洲欧洲av| 精品少妇av| 蜜臀精品一区二区三区在线观看 | 欧美日韩水蜜桃| 国产亚洲精品v| 欧美日本久久| 久久精选视频| 欧美在线精品一区| 水蜜桃精品av一区二区| 99国产精品私拍| 国产精品手机在线播放|