From 19fdb56f6e2d088b63d5e807974cff77de34799d Mon Sep 17 00:00:00 2001
From: Tevin <tingquanren@163.com>
Date: Fri, 07 Jan 2022 18:36:24 +0800
Subject: [PATCH] 优化数值输入组件

---
 bases/Fetcher.js |  129 ++++++++++++++----------------------------
 1 files changed, 43 insertions(+), 86 deletions(-)

diff --git a/bases/Fetcher.js b/bases/Fetcher.js
index f32b790..d850bd8 100644
--- a/bases/Fetcher.js
+++ b/bases/Fetcher.js
@@ -82,12 +82,8 @@
         }
         // 正常模式
         else {
-            // 代理模式
-            if (typeof project.host.proxyType !== 'undefined' && project.host.proxyType !== 'lc') {
-                url = '/proxy' + this._data.urlPrefix[1] + (serSuffix || devSuffix);
-            }
             // 开发环境地址
-            else if (Fetcher.inDevMod) {
+            if (Fetcher.inDevMod) {
                 url = this._data.urlPrefix[0] + devSuffix;
             }
             // 生产环境地址
@@ -107,31 +103,29 @@
      * get 请求
      * @param {String} url
      * @param {*} data
-     * @param {(String[])[]} [remap]
      * @param {object} [options]
      * @return {Promise<any>}
      */
-    get(url, data, remap = [], options = null) {
+    get(url, data, options = {}) {
         const params = Qs.stringify(data);
         if (url.indexOf('?') >= 0) {
             url += '&' + params;
         } else {
             url += '?' + params;
         }
-        return this.query('get', url, null, remap, options);
+        return this.query('get', url, null, options);
     }
 
     /**
      * post 请求
      * @param {String} url
      * @param {*} data
-     * @param {(String[])[]} [remap]
      * @param {object} [options]
      * @return {Promise<any>}
      */
-    post(url, data, remap = [], options = null) {
+    post(url, data, options = {}) {
         if (this._data.mock === 'on') {
-            return this.get(url, data, remap = [], options);
+            return this.get(url, data, options);
         }
         const params = Qs.stringify(data);
         const data2 = {};
@@ -141,7 +135,7 @@
                 data2[decodeURIComponent(item[0])] = decodeURIComponent(item[1]);
             }
         });
-        return this.query('post', url, data2, remap, options);
+        return this.query('post', url, data2, options);
     }
 
     /**
@@ -149,11 +143,10 @@
      * @param {String} type
      * @param {String} url
      * @param {*} [data]
-     * @param {*} [remap]
      * @param {object} [options]
      * @return {Promise<any>|}
      */
-    query(type, url, data = null, remap, options = {}) {
+    query(type, url, data = null, options = {}) {
         return new Promise((resolve, reject) => {
             const header = {
                 ...this._defaultConfig.header,
@@ -182,16 +175,19 @@
                      */
                     const responseData = this._adaptiveResponseData(response.data);
                     responseData.state.http = response.statusCode;
-                    resolve(this._transformResponseData(responseData, remap));
+                    resolve(this._transformResponseData(responseData, options));
                 },
                 fail: error => {
-                    this._resolveCaughtNetErr(error);
+                    if (typeof options.silence === 'undefined' || !options.silence) {
+                        this._resolveCaughtNetErr(error);
+                    }
                     reject(null);
                 },
             });
         });
     }
 
+    // 小程序中,保存 cookies
     _saveCookies(cookies) {
         const localCookies = JSON.parse(Taro.getStorageSync('cookies') || '{}');
         cookies.forEach(cookie => {
@@ -201,6 +197,7 @@
         Taro.setStorageSync('cookies', JSON.stringify(localCookies));
     }
 
+    // 小程序中,获取 cookies
     _getCookies() {
         const localCookies = JSON.parse(Taro.getStorageSync('cookies') || '{}');
         const cookiesArr = [];
@@ -357,11 +354,10 @@
     /**
      * 转换响应体
      * @param response
-     * @param {Array[]} remap
      * @returns {Object|{}|null}
      * @private
      */
-    _transformResponseData(response, remap) {
+    _transformResponseData(response, options) {
         if (!response) {
             return null;
         }
@@ -375,17 +371,15 @@
                 }
                 // 先转驼峰
                 response.data = this.transKeyName('camel', response.data);
-                // 再重映射
-                if (remap && remap.length > 0) {
-                    response.data = this._remapData(response.data, remap);
-                }
                 // 转换常规数字字符串为数值
                 response.data = this._transNumStringToNumber(response.data);
                 return response.data;
             }
         } else if (response.state.code === 2001) {
             setTimeout(() => {
-                this.message('info', response.state.msg);
+                if (typeof options.silence === 'undefined' || !options.silence) {
+                    this.message('info', response.state.msg);
+                }
             }, 20);
             return null;
         } else if (response.state.code === 9001) {
@@ -394,72 +388,19 @@
             if (process.env.TARO_ENV === 'weapp') {
                 Taro.navigateTo({ url: '/pages/home/index/index?mode=login' });
             }
-            // 在App中,直接跳转登陆页
+            // 在App中,跳转到首页取消登陆
             if (project.appHybrid) {
-                Taro.reLaunch({ url: '/pages/home/login/login' });
+                Taro.navigateTo({ url: '/pages/home/index/index?mode=logout' });
             }
             return null;
         } else {
             setTimeout(() => {
-                this.message('error', response.state.msg);
+                if (typeof options.silence === 'undefined' || !options.silence) {
+                    this.message('error', response.state.msg);
+                }
             }, 20);
             return null;
         }
-    }
-
-    /**
-     * 转换响应体数据结构
-     * @param {Object} data
-     * @param {Array[]} maps
-     * @example maps: [
-     *          ['rows.[]', 'recvName', 'userName']   // 默认语法:键名转换(路径,旧名,新名)
-     *      ]
-     * @private
-     */
-    _remapData(data, maps) {
-        // 渡值
-        const ferryValue = (source, paths, map) => {
-            // 最后一环,传值
-            if (paths.length === 0) {
-                // 目标已有值,跳过传值不覆盖
-                if (typeof source[map[2]] !== 'undefined') {
-                    return;
-                }
-                // 来源没有值,赋值空字符串
-                if (typeof source[map[1]] === 'undefined') {
-                    source[map[2]] = '';
-                }
-                // 来源有值,直接赋值
-                else {
-                    source[map[2]] = source[map[1]];
-                }
-                delete source[map[1]];
-                return;
-            }
-            // 提取当前环节
-            const curPath = paths.shift();
-            if (curPath === '[]') {
-                source.forEach(item => {
-                    ferryValue(item, [...paths], map);
-                });
-            } else {
-                ferryValue(source[curPath], [...paths], map);
-            }
-        };
-        for (let map of maps) {
-            // 键名转换
-            if (map[0].indexOf('.') >= 0) {
-                const paths = map[0].split('.');
-                ferryValue(data, paths, map);
-            } else {
-                if (map[0].length > 0) {
-                    ferryValue(data, [map[0]], map);
-                } else {
-                    ferryValue(data, [], map);
-                }
-            }
-        }
-        return data;
     }
 
     /**
@@ -569,7 +510,7 @@
                     return path;
                 }
                 // 绝对路径
-                if (/^(\/upload|\/static)/.test(path)) {
+                if (/^(\/upload|\/static|\/mini)/.test(path)) {
                     return Fetcher.host + path;
                 }
                 // 部分路径
@@ -637,8 +578,22 @@
     static inDevMod = (() => {
         // 网页
         if (process.env.TARO_ENV === 'h5') {
-            // 当没有 url 指定时,只有内网 ip 和 33**/35** 的端口号,视为本地开发模式
-            return /^(192|127|localhost).*?:3[35]\d{2}$/i.test(window.location.host);
+            // http协议访问
+            if (window.location.protocol.indexOf('http') > 0) {
+                // 当内网 ip 且使用 33**/35** 的端口号时,视为本地开发模式
+                return /^(192|127|localhost).*?:3[35]\d{2}$/i.test(window.location.host);
+            }
+            // 非http协议访问
+            else {
+                // 开发编译
+                if (process.env.NODE_ENV === 'development') {
+                    return true;
+                }
+                // 生产编译
+                else if (process.env.NODE_ENV === 'production') {
+                    return false;
+                }
+            }
         }
         // 小程序
         else if (process.env.TARO_ENV === 'weapp') {
@@ -663,9 +618,11 @@
             // 如果网址参数有指定服务器
             const server = Tools.getUrlParam('server');
             if (server) {
-                // 如果是完整网址,直接使用地址
+                // 如果是完整网址,使用网址对应的域名
                 if (server.indexOf('http') >= 0) {
-                    return server;
+                    const portal = server.split('//')[0];
+                    const domain = server.split('//')[1].split('/')[0];
+                    return portal + '//' + domain;
                 }
                 // 如果有匹配服务器,使用指定的服务器地址
                 if (typeof project.host.hosts[server] !== 'undefined') {

--
Gitblit v1.9.1