feat(table): support asynchrony in beforeFetch and afterFetch (#827)

This commit is contained in:
SUPER_AI 2021-06-29 23:53:10 +08:00 committed by GitHub
parent d38ff6670a
commit 749ba5c1da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -203,7 +203,7 @@ export function useDataSource(
...(opt?.filterInfo ?? {}),
};
if (beforeFetch && isFunction(beforeFetch)) {
params = beforeFetch(params) || params;
params = (await beforeFetch(params)) || params;
}
const res = await api(params);
@ -225,7 +225,7 @@ export function useDataSource(
}
if (afterFetch && isFunction(afterFetch)) {
resultItems = afterFetch(resultItems) || resultItems;
resultItems = (await afterFetch(resultItems)) || resultItems;
}
dataSourceRef.value = resultItems;
setPagination({