mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-23 22:20:23 +09:00
20 lines
461 B
TypeScript
20 lines
461 B
TypeScript
import { getAuthHeaders } from "../api";
|
|
|
|
export class FileApi {
|
|
async upload(file: any): Promise<void> {
|
|
const formData = new FormData();
|
|
formData.append("file", file);
|
|
var headers = getAuthHeaders();
|
|
var res = await fetch("/api/file/upload", {
|
|
method: "POST",
|
|
body: formData,
|
|
headers: {
|
|
...headers,
|
|
},
|
|
});
|
|
const resJson = await res.json();
|
|
console.log(resJson);
|
|
return resJson.fileName;
|
|
}
|
|
}
|