You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
Hi !
Using currently excel4node with expressJS. Sending the object and receiving binary data of excel
Want to go away from local server and move it to Azure Functions. Can someone tell is it possible and maybe someone has example how it should looks like?
The text was updated successfully, but these errors were encountered:
Adding some details here:
So AF using the following synthax to send the data back module.exports = async function (context, req) { try { context.res = { body: "Success!" }; } catch(error) { const err = JSON.stringify(error); context.res = { status: 500, body: Request error. ${err} }; } };
So looks like we can use our method: wb.write('Excel.xlsx', res);
but instead res - context.res.
However, this not work. Any suggestions guys how return excel from Azure Functions?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi !
Using currently excel4node with expressJS. Sending the object and receiving binary data of excel
Want to go away from local server and move it to Azure Functions. Can someone tell is it possible and maybe someone has example how it should looks like?
The text was updated successfully, but these errors were encountered: