This commit is contained in:
wanchun 2022-11-17 14:45:59 +08:00
commit 92ebdad2db
4 changed files with 15 additions and 4 deletions

View File

@ -1,3 +1,12 @@
# [3.0.0-beta.32](https://github.com/WeBankFinTech/fes.js/compare/v3.0.0-beta.31...v3.0.0-beta.32) (2022-11-15)
### Bug Fixes
* 修复 request ts 类型提示问题 ([2469009](https://github.com/WeBankFinTech/fes.js/commit/246900923a71b872cda37003c08fae3046d250d9))
# [3.0.0-beta.31](https://github.com/WeBankFinTech/fes.js/compare/v3.0.0-beta.29...v3.0.0-beta.31) (2022-11-10)

View File

@ -1,6 +1,6 @@
{
"name": "fes.js",
"version": "3.0.0-beta.31",
"version": "3.0.0-beta.32",
"description": "一个好用的前端管理台快速开发框架",
"preferGlobal": true,
"private": true,

View File

@ -1,6 +1,6 @@
{
"name": "@fesjs/plugin-request",
"version": "3.0.0-rc.1",
"version": "3.0.0-rc.2",
"description": "@fesjs/plugin-request",
"main": "lib/index.js",
"files": [

View File

@ -7,14 +7,16 @@ type ResponseInterceptor = (value: AxiosResponse) => AxiosResponse | [(value: Ax
interface RequestPluginOption {
mergeRequest?: boolean;
dataHandler?(data: any, response: AxiosResponse): any;
errorHandler?(error: AxiosError | {type: string, msg: string, [key: string]: string}): void;
cache?: boolean | {
type: 'ram' | 'sessionStorage' | 'localStorage',
cacheTime: number;
}
}
export function request(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): Promise<any>
export function useRequest(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref<boolean>; errorRef: Ref<Error>; dataRef: Ref<any>}
export function request(url: string, data?: null | Record<string, any>, options?: AxiosRequestConfig & RequestPluginOption ): Promise<any>
export function useRequest(url: string, data?: null | Record<string, any>, options?: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref<boolean>; errorRef: Ref<Error>; dataRef: Ref<any>}
declare module "@fesjs/fes" {
interface PluginRuntimeConfig {
request?: {