当前位置: 首页 > news >正文

vue2项目中,多个固定的请求域名 和 通过url动态获取到的ip域名 封装 axios

vue2 使用场景:项目中,有固定的请求域名,而有某些接口是其他域名

@/utils/request.js 固定请求域名

import axios from 'axios'
import Vue from 'vue'let baseURL = ''
switch (window.location.hostname) {case 'localhost': // 本地case '127.0.0.1':case '172.25.112.0':baseURL = 'https://csapi.test/'breakcase 'www.kaifa.top': // 开发(网址)baseURL = 'https://kfapi.test.top/'breakcase 'www.ceshi.top': // 测试(网址)baseURL = 'https://csapi.test.top/'breakcase 'www.zhengshi.cn': // 正式(网址)baseURL = 'https://api.zheng.cn/'break
}const service = axios.create({baseURL,timeout: 180000
})service.interceptors.response.use(response => {return response}
)Vue.prototype.$http = serviceexport default baseURL

@/utils/request_ip.js 设置动态请求域名

import axios from 'axios';
import Vue from 'vue'
import { getHashParam } from '@/utils/tool'; 
// 获取ip的值      url链接?后面携带的参数  ?id=12&ip=172.21.999.50:8000// 从 URL 参数中获取域名
const getBaseURL = () => {const myParam = getHashParam('ip');let ip;// 如果 :变成了%3A  则替换 %3A 为 冒号if(myParam.search('%3A')){ip = myParam.replace(/%3A/g, ':');}else{ip = myParam;}// 如果没有端口号,添加默认端口号if (!ip.includes(':')) ip += ':8000'if (ip) {return `http://${ip}/`;}// 默认回退到当前域名// const { protocol, hostname, port } = window.location;// return `${protocol}//${hostname}${port ? `:${port}` : ''}`;
};console.log( getBaseURL(),'获取到ip地址')const instance = axios.create({baseURL: getBaseURL(), // 动态获取的域名timeout: 180000,// headers: {// 'Content-Type': 'application/json',// }
});instance.interceptors.response.use(response => {return response}
)Vue.prototype.$httpip = instance

@/utils/tool.js 获取 url链接 携带的参数

export function getHashParam(param) {const hash = window.location.hash.substring(1); // 移除开头的'#'const params = hash.split('&').reduce((acc, curr) => {const [key, value] = curr.split('=');acc[key] = value;return acc;}, {});return params[param] ? decodeURIComponent(params[param]) : null;
}

在 main.js 文件中 引入

import '@/utils/request'
import '@/utils/request_ip'

在vue页面中使用 @/view/index.vue

methods:{// 固定的请求域名 示例   this.$httpgetYishuKaoshiList() {let data = {page: 1}this.$http.post('getList', data).then(res => {if (res.data.code == 1) {}});},// 动态获取到的ip域名  请求接口 示例   this.$http_ipdongFn(item) {let data = {project_id:1}this.$httpip.post('decrypt',data).then(res => {if (res.data.code == 1) {this.$Message.success('成功');}else{this.$Message.error(res.data.msg);}});},}

http://www.mrgr.cn/news/97221.html

相关文章:

  • 量化交易----从0到1
  • 前端布局难题:父元素padding导致子元素无法全屏?3种解决方案
  • 增益调度控制 —— 理论、案例与交互式 GUI 实现
  • 【数学建模】(时间序列模型)ARIMA时间序列模型
  • #SVA语法滴水穿石# (013)关于内建系统函数
  • 实践:用Ollama+DeepSeek-R1搭建AI知识库
  • 博途 TIA Portal之1200做主站与200SMART的S7通讯
  • Axure RP9.0教程: 查询条件隐藏与显示(综合了动态面板状态切换及展开收缩效果实现)
  • C++ KMP算法
  • #SVA语法滴水穿石# (013)关于 disable iff、matched 、expect 的用法
  • 贪心算法之最小生成树问题
  • 分治-归并排序-逆序对问题
  • 【VUE】RuoYi-Vue3项目结构的分析
  • MessageQueue --- RabbitMQ WorkQueue
  • C++ 排序(1)
  • 我的购物车设计思考:从个人项目到生产实战思考的蜕变
  • 【2016】【论文笔记】差频可调谐THz技术——
  • 基于编程的运输设备管理系统设计(vue+springboot+ssm+mysql8.x)
  • 九、重学C++—类和函数
  • Python解决“组成字符串ku的最大次数”问题