mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
修改文档
This commit is contained in:
parent
2927915a6c
commit
9d78bc439d
@ -230,12 +230,13 @@ this.FesApi.setImportant({
|
||||
```js
|
||||
// 参数支持: function, [function, function]
|
||||
// 请求拦截
|
||||
const eject = api.setReqInterceptor(function (config) {
|
||||
const eject = this.FesApi.setReqInterceptor(function (config) {
|
||||
// do something
|
||||
return config
|
||||
})
|
||||
|
||||
// 取消请求拦截
|
||||
api.ejectReqInterceptor(eject);
|
||||
this.FesApi.ejectReqInterceptor(eject);
|
||||
```
|
||||
|
||||
### setResInterceptor & ejectResInterceptor
|
||||
@ -243,14 +244,15 @@ api.ejectReqInterceptor(eject);
|
||||
```js
|
||||
// 参数支持: function, [function, function]
|
||||
// 响应拦截
|
||||
const eject = api.setResInterceptor((response) => {
|
||||
const eject = this.FesApi.setResInterceptor((response) => {
|
||||
// do something
|
||||
return response
|
||||
}, (error) => {
|
||||
// do somthing for error
|
||||
})
|
||||
|
||||
// 取消响应拦截
|
||||
api.ejectResInterceptor(eject);
|
||||
this.FesApi.ejectResInterceptor(eject);
|
||||
```
|
||||
|
||||
## FesFesx
|
||||
|
Loading…
x
Reference in New Issue
Block a user