mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix: 修复fesApi的bug
This commit is contained in:
parent
f9ba3df558
commit
1c4ff84fc4
@ -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)
|
||||
|
||||
|
@ -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)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user