在angularjs和express.js之间下载工作

前端之家收集整理的这篇文章主要介绍了在angularjs和express.js之间下载工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我可以获取我请求的文件的原始数据,但我无法让浏览器向用户提供文件.我需要使用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
我在我的服务文件中使用下面的代码来下载项目,它运行得很好.我从 http://filamentgroup.com/lab/jquery_plugin_for_requesting_ajax_like_file_downloads/开始
$('<form action="'+ url +'" method="'+ ('post') +'">'+inputs+'</form>')
               .appendTo('body').submit().remove();
原文链接:https://www.f2er.com/angularjs/143648.html

猜你在找的Angularjs相关文章