From 3d3362e4300d49db23de48575d26c8d501fdbfd8 Mon Sep 17 00:00:00 2001 From: Tevin <tingquanren@163.com> Date: Fri, 20 Aug 2021 18:52:00 +0800 Subject: [PATCH] 优化跨端通讯机制,实现从全局接收App通知,并通知页面 --- bases/Fetcher.js | 69 ++++++++++++++++++++++++++++++---- 1 files changed, 60 insertions(+), 9 deletions(-) diff --git a/bases/Fetcher.js b/bases/Fetcher.js index 7507469..5d6c443 100644 --- a/bases/Fetcher.js +++ b/bases/Fetcher.js @@ -17,8 +17,9 @@ constructor(options = {}) { this._data = { urlPrefix: options.urlPrefix || ['/api/common/', '/api/common/'], + mock: Tools.getUrlParam('mock') || project.host.mock, }; - if (project.host.mock === 'on') { + if (this._data.mock === 'on') { if (project.host.assetsPath.indexOf('..') === 0) { this._defaultConfig.url = Fetcher.host + '/' + project.host.assetsPath.replace('/assets', '/mocks'); } else { @@ -35,7 +36,7 @@ */ _defaultConfig = (() => { // 跨域模式,一般为 App 内嵌页面 - if (project.host.cors) { + if (project.appHybrid) { return { url: '', header: { @@ -72,11 +73,11 @@ spellURL(devSuffix, serSuffix) { let url = ''; // mock 模式 - if (project.host.mock === 'on') { + if (this._data.mock === 'on') { url = this._data.urlPrefix[0].replace('api/', '') + devSuffix + '.json'; } // 强制实际请求模式 - else if (project.host.mock === 'real') { + else if (this._data.mock === 'real') { url = this._data.urlPrefix[1] + (serSuffix || devSuffix); } // 正常模式 @@ -125,7 +126,7 @@ * @return {Promise<any>} */ post(url, data, remap = [], options = null) { - if (project.host.mock === 'on') { + if (this._data.mock === 'on') { return this.get(url, data, remap = [], options); } const params = Qs.stringify(data); @@ -213,6 +214,49 @@ // 标准请求,不转换 if (typeof responseData.state === 'object' && typeof responseData.data === 'object') { return responseData; + } + // App版请求,响应体转换 + if (typeof responseData.ret !== 'undefined' && typeof responseData.data !== 'undefined') { + // 转换数据体 + let data2 = { rows: [] }; + // 数组类型 + if (responseData.data instanceof Array) { + if (responseData.data.length > 0) { + data2.rows = responseData.data; + } + } + // 对象类型 + else if (responseData.data instanceof Object) { + if (!Tools.isEmptyObject(responseData.data)) { + data2 = responseData.data; + } + } + // 转换响应码 + let code = 0; + // 正常 + if (responseData.ret === 0) { + code = 2000; + } + // 特殊模式下的状态码,转换为正常模式,由页面处理业务 + else if (responseData.ret === 10999) { + code = 2000; + } + // 未登录 + else if (responseData.ret === 101110) { + code = 9001; + } + // 其他按报错 + else { + code = 5000; + } + // 合并响应体 + return { + state: { + code, + msg: responseData.msg, + }, + data: data2, + }; } // 旧请求,操作类通讯,响应体转换 if (typeof responseData.status !== 'undefined' && typeof responseData.dataMsg !== 'undefined') { @@ -341,9 +385,16 @@ }, 20); return null; } else if (response.state.code === 9001) { + // 在微信公众号中,每次进入即登陆,登陆失效关闭重进即可(进入链接带公司绑定码,页面没有存这个码,也不需要) + // 在小程序中,使用自动登陆机制,自动登陆失败才去授权页绑定账号 if (process.env.TARO_ENV === 'weapp') { Taro.navigateTo({ url: '/pages/home/index/index?mode=login' }); } + // 在App中,直接跳转登陆页 + if (project.appHybrid) { + Taro.reLaunch({ url: '/pages/home/login/login' }); + } + return null; } else { setTimeout(() => { this.message('error', response.state.msg); @@ -413,7 +464,7 @@ * @return {String} * @private */ - _stringToCamel(str) { + stringToCamel(str) { let str2 = ''; if (str.indexOf('_') <= 0) { str2 = str; @@ -433,7 +484,7 @@ * @return {String} * @private */ - _stringToUnderline(str) { + stringToUnderline(str) { let str2 = ''; if ((/[A-Z]/).test(str)) { str2 = str.replace(/([A-Z])/g, ($1) => { @@ -463,9 +514,9 @@ // 字符串键名进行转换 else { if (type === 'camel') { - key = this._stringToCamel(p); + key = this.stringToCamel(p); } else if (type === 'underline') { - key = this._stringToUnderline(p); + key = this.stringToUnderline(p); } } // 属性为对象时,递归转换 -- Gitblit v1.9.1