fix(client/upload): fix upload mutiple files always uploading status (#974)

This commit is contained in:
lyf-coder 2022-10-31 11:30:56 +08:00 committed by chenos
parent b9910cdc1f
commit 8df527f7e9

View File

@ -167,12 +167,13 @@ export function useUploadProps<T extends IUploadProps = UploadProps>({ serviceEr
props.onChange?.(normalizeFileList([...param.fileList]));
};
const form = useForm();
const api = useAPIClient();
return {
...props,
// in customRequest method can't modify form's status(e.g: form.disabled=true )
// that will be trigger Upload componentactual Underlying is AjaxUploader component 's componentWillUnmount method
// which will cause multiple files upload fail
customRequest({ action, data, file, filename, headers, onError, onProgress, onSuccess, withCredentials }) {
const formData = new FormData();
if (data) {
@ -181,7 +182,6 @@ export function useUploadProps<T extends IUploadProps = UploadProps>({ serviceEr
});
}
formData.append(filename, file);
form.disabled = true;
api.axios
.post(action, formData, {
withCredentials,
@ -194,9 +194,7 @@ export function useUploadProps<T extends IUploadProps = UploadProps>({ serviceEr
onSuccess(data, file);
})
.catch(onError)
.finally(() => {
form.disabled = false;
});
.finally(() => {});
return {
abort() {