We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I need upload a excel file but I can't read the filepath of formdata that I send by Postman.
export const uploadSpreadsheet = api( { expose: true, method: "POST", path: "/upload", bodyLimit: null }, async ({ filename, files, file, body }: { filename: string, files: string, file: string, body: any }) => { console.log({ filename, files, file }); } );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need upload a excel file but I can't read the filepath of formdata that I send by Postman.
export const uploadSpreadsheet = api(
{ expose: true, method: "POST", path: "/upload", bodyLimit: null },
async ({ filename, files, file, body }: { filename: string, files: string, file: string, body: any }) => {
console.log({ filename, files, file });
}
);
The text was updated successfully, but these errors were encountered: