Rank 3: Container
Has anyone used this component, https://www.skeleton.dev/components/file-dropzone and combined it with Appwrite? I can't seem to be able to get it working.
Votes
0
Replies
4
Participants
Unknown
Messages
5
Rank 3: Container
Has anyone used this component, https://www.skeleton.dev/components/file-dropzone and combined it with Appwrite? I can't seem to be able to get it working.
Rank 3: Container
after dragging image to the component, i can get let files: FileList; files[0].name, but that doesn't give me much.. Don't understand how to get the path so i can upload the file..
Admin
Have you tried passing the file to the create function?
Rank 3: Container
Yes that worked, js uploadArticleImage: async (file: any) => { return await storage.createFile('images', ID.unique(), file); },
Admin
[SOLVED] Sveltekit FileDropzone from '@skeletonlabs/skeleton' image upload to appwrite.