Replies: 1 comment
-
See examples here: https://reflex.dev/docs/assets/upload-and-download-files/#with- You can pass |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My back-end generates a temporary (xml) file which I want to offer to the user as a download.
In JavaScript I would do:
let blob = new Blob([myXml], {type: 'application/xml'});
let url = URL.createObjectURL(blob);
How can I do this in Reflex?
Beta Was this translation helpful? Give feedback.
All reactions