我可以获得我请求的文件的原始数据,但我无法让浏览器将文件提供给用户。我需要使用 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