fix: 修复fesApi的bug

This commit is contained in:
harrywan 2021-04-29 11:21:57 +08:00
parent f9ba3df558
commit 1c4ff84fc4
2 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,6 @@
</div>
- 在线体验 - [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)

View File

@ -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)) {