javascript - Send file AND html page? -
i'm using express create link users download file. once click link, file downloads computer.
for i'm using:
res.download('filename.pdf');
easy.
is possible either redirect them page or send html page along well? not sure web servers can this.
no.
in future, think pull off spdy or http 2.0, http 1.1 doesn't allow this. technically can attach data 302 moved response, browser going ignore it.
Comments
Post a Comment