docs: 修复 request 文档

This commit is contained in:
winixt 2022-09-29 15:25:38 +08:00
parent 0960e8b28c
commit 7af10eeb59

View File

@ -222,7 +222,8 @@ export const request = {
function (config) {
// 在发送请求之前做些什么
return config;
}, function (error) {
},
function (error) {
// 对请求错误做些什么
return Promise.reject(error);
}
@ -238,14 +239,15 @@ export const request = {
function (response) {
// 对响应数据做点什么
return response;
}, function (error) {
},
function (error) {
// 对响应错误做点什么
return Promise.reject(error);
}
]
],
}
]
};
```
## API
@ -263,4 +265,3 @@ export const request = {
### useRequest
request 的封装,返回响应式 `loading``error``data`
```