mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
Merge branch 'next' of https://github.com/WeBankFinTech/fes.js into next
This commit is contained in:
commit
92ebdad2db
@ -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)
|
# [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)
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "fes.js",
|
"name": "fes.js",
|
||||||
"version": "3.0.0-beta.31",
|
"version": "3.0.0-beta.32",
|
||||||
"description": "一个好用的前端管理台快速开发框架",
|
"description": "一个好用的前端管理台快速开发框架",
|
||||||
"preferGlobal": true,
|
"preferGlobal": true,
|
||||||
"private": true,
|
"private": true,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@fesjs/plugin-request",
|
"name": "@fesjs/plugin-request",
|
||||||
"version": "3.0.0-rc.1",
|
"version": "3.0.0-rc.2",
|
||||||
"description": "@fesjs/plugin-request",
|
"description": "@fesjs/plugin-request",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
6
packages/fes-plugin-request/types.d.ts
vendored
6
packages/fes-plugin-request/types.d.ts
vendored
@ -7,14 +7,16 @@ type ResponseInterceptor = (value: AxiosResponse) => AxiosResponse | [(value: Ax
|
|||||||
|
|
||||||
interface RequestPluginOption {
|
interface RequestPluginOption {
|
||||||
mergeRequest?: boolean;
|
mergeRequest?: boolean;
|
||||||
|
dataHandler?(data: any, response: AxiosResponse): any;
|
||||||
|
errorHandler?(error: AxiosError | {type: string, msg: string, [key: string]: string}): void;
|
||||||
cache?: boolean | {
|
cache?: boolean | {
|
||||||
type: 'ram' | 'sessionStorage' | 'localStorage',
|
type: 'ram' | 'sessionStorage' | 'localStorage',
|
||||||
cacheTime: number;
|
cacheTime: number;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function request(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): Promise<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>}
|
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" {
|
declare module "@fesjs/fes" {
|
||||||
interface PluginRuntimeConfig {
|
interface PluginRuntimeConfig {
|
||||||
request?: {
|
request?: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user