I am writing a NodeJS Electron App to be distributed on all platforms. I have a download button that I would like to pop open a Save As dialog with the file being provided from the server. Does anybody know the best way to do this?
Here are the things I have tried that work when running the node app locally but fail after I have packaged the app with electron-packager:
- Setting window.location.href to the location of the file
- Setting the src of a hidden iframe to the location of the file
When running the packaged mac app, the "did-fail-load" event is fired and prevents the Save As dialog from showing. When looking at the network requests, I can see that the file is successfully retrieved from the server. I can't seem to figure out why the "did-fail-load" event is being fired.
On the HTML button:
In your javascript file:
Take a look at this page on the electron docs https://github.com/atom/electron/blob/master/docs/api/dialog.md
There is a section about dialog.showSaveDialog
Then you can use the URL from the save dialog with a function similar to the one below to save it to that location.
Found on this page https://github.com/atom/electron/blob/master/docs/api/session.md