From 1c4ff84fc423cfe63cc210be25922bf183f8b904 Mon Sep 17 00:00:00 2001 From: harrywan Date: Thu, 29 Apr 2021 11:21:57 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DfesApi=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 - packages/fes-core/src/api/index.js | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0cc36bb3..57732d92 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,6 @@ -- 在线体验 - [http://webank.gitee.io/fes-pro/](http://webank.gitee.io/fes-pro/) - 使用文档 - [https://webank.gitee.io/fes.js/](https://webank.gitee.io/fes.js/) - 更新日志 - [https://github.com/WeBankFinTech/fes.js/blob/master/CHANGELOG.md](https://github.com/WeBankFinTech/fes.js/blob/master/CHANGELOG.md) diff --git a/packages/fes-core/src/api/index.js b/packages/fes-core/src/api/index.js index b3bcd61b..c24bd4e7 100644 --- a/packages/fes-core/src/api/index.js +++ b/packages/fes-core/src/api/index.js @@ -142,7 +142,8 @@ const success = function (response) { error.response = response; throw error; } - return result || {}; + // eslint-disable-next-line no-undefined + return (result === undefined || result === null) || {}; }; const fail = function (error) { @@ -173,6 +174,7 @@ const fail = function (error) { throw error; }; +// eslint-disable-next-line complexity const param = function (url, data, option) { const method = instance.defaults.method || 'post'; if (util.isNull(url)) {