
* fix: request download and upload not support `responseReturn` * docs: update * fix: type of request client upload result
35 lines
788 B
TypeScript
35 lines
788 B
TypeScript
import type { RequestClient } from '../request-client';
|
|
import type { RequestClientConfig } from '../types';
|
|
|
|
class FileUploader {
|
|
private client: RequestClient;
|
|
|
|
constructor(client: RequestClient) {
|
|
this.client = client;
|
|
}
|
|
|
|
public async upload<T = any>(
|
|
url: string,
|
|
data: Record<string, any> & { file: Blob | File },
|
|
config?: RequestClientConfig,
|
|
): Promise<T> {
|
|
const formData = new FormData();
|
|
|
|
Object.entries(data).forEach(([key, value]) => {
|
|
formData.append(key, value);
|
|
});
|
|
|
|
const finalConfig: RequestClientConfig = {
|
|
...config,
|
|
headers: {
|
|
'Content-Type': 'multipart/form-data',
|
|
...config?.headers,
|
|
},
|
|
};
|
|
|
|
return this.client.post(url, formData, finalConfig);
|
|
}
|
|
}
|
|
|
|
export { FileUploader };
|