我可以获取我请求的文件的原始数据,但我无法让浏览器向用户提供文件.我需要使用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/开始
原文链接:https://www.f2er.com/angularjs/143648.html$('<form action="'+ url +'" method="'+ ('post') +'">'+inputs+'</form>') .appendTo('body').submit().remove();