前端处理API接口故障:多接口自动切换的实现方案

因为在开发APP,一个接口如果不通(被挂了)又不能改了重新打包让用户再下载软件更新,所以避免这种情况,跟后端讨论多备用接口地址自动切换的方案,自动切换到备用的接口地址,并保证后续所有的请求都使用当前可用的接口地址,以供参考(非必要可以不使用)

其实这种会出现很多问题,当不同的用户访问的服务器地址不一样,而每个服务器的数据又不完全同步。所以后端方案是数据库统一,负载均衡。

解决方案思路:
  1. 接口地址列表:维护一个接口地址列表,当请求失败时,依次尝试备用地址。
  2. 全局可用接口地址:一旦找到一个可用的接口地址,所有后续请求都会使用该地址,直到它不可用时再进行切换。
  3. 持久化存储:使用本地存储将当前可用的接口地址存储起来,避免页面刷新后重新从第一个接口地址开始尝试
javascript 复制代码
// 维护当前可用的接口地址,使用本地存储持久化
let currentInterfaceUrl = uni.getStorageSync('currentInterfaceUrl') || 'http://192.168.0.165:8889/platform-api/app/';
const interfaceUrls = [
    'http://192.168.0.165:8889/platform-api/app/', 
    'http://192.168.0.166:8889/platform-api/app/', 
    'http://192.168.0.167:8889/platform-api/app/'
];

// 通用的请求方法
function request(url, postData = {}, method = "GET", contentType = "application/json") {
    return new Promise((resolve, reject) => {
        function tryRequest(attempt) {
            if (attempt >= interfaceUrls.length) {
                reject('所有接口地址均不可用');
                return;
            }

            let currentUrl = interfaceUrls[attempt];
            uni.request({
                url: currentUrl + url,
                data: postData,
                header: {
                    'content-type': contentType,
                    'token': uni.getStorageSync('token') // 获取token
                },
                method: method,
                success: (res) => {
                    if (res.statusCode === 200) {
                        // 更新全局接口地址
                        if (currentInterfaceUrl !== currentUrl) {
                            currentInterfaceUrl = currentUrl;
                            uni.setStorageSync('currentInterfaceUrl', currentInterfaceUrl);
                        }
                        resolve(res.data);
                    } else {
                        reject(res.data.msg);
                    }
                },
                fail: () => {
                    console.log('当前接口地址不可用,尝试下一个地址...');
                    tryRequest(attempt + 1);  // 尝试下一个接口地址
                }
            });
        }

        // 从当前可用的接口地址开始请求
        let attempt = interfaceUrls.indexOf(currentInterfaceUrl);
        tryRequest(attempt);
    });
}
相关推荐
Monly216 分钟前
JS:JSON操作
前端·javascript·json
小何学计算机1 小时前
Nginx 配置基于主机名的 Web 服务器
服务器·前端·nginx
web_code1 小时前
vite依赖预构建(源码分析)
前端·面试·vite
觉醒法师1 小时前
HarmonyOS开发 - 本地持久化之实现LocalStorage支持多实例
前端·javascript·华为·typescript·harmonyos
小何学计算机2 小时前
Nginx 配置基于IP 地址的 Web 服务器
前端·tcp/ip·nginx
w风雨无阻w2 小时前
Vue3 学习笔记(十一)Vue生命周期
javascript·vue.js·前端框架·vue3
清清ww2 小时前
【vue】13.深入理解递归组件
前端·javascript·vue.js
清清ww2 小时前
【vue】09.computer和watch的使用
前端·javascript·vue.js
Gnevergiveup2 小时前
2024网鼎杯青龙组Web+Misc部分WP
开发语言·前端·python
你不讲 wood2 小时前
使用 Axios 上传大文件分片上传
开发语言·前端·javascript·node.js·html·html5