I can get the raw data of the file that I am requesting, but I can't get the browser to serve the file to the user. Do I need to use iframes?
//Client code
download_file: function (path, callback) {
$http.post('/download/client_file', {path:path}).
success(function(data, status, headers, config) {
console.log(data); //this contains the raw data of the res.download
//from the server.
});
}
//server code
res.download(file); // the path is proper