要求しているファイルの生データを取得できますが、ブラウザでファイルをユーザーに提供できません。iframe を使用する必要がありますか?
//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