如何使用AngularJS或Javascript提供下载文件?

时间:2013-05-13 03:39:19

标签: javascript angularjs

我在隐藏的textarea中有一些文字。单击按钮时,我希望将文本提供下载为.txt文件。这可能使用AngularJS或Javascript吗?

11 个答案:

答案 0 :(得分:106)

您可以使用Blob执行此类操作。

<a download="content.txt" ng-href="{{ url }}">download</a>

在您的控制器中:

var content = 'file content for example';
var blob = new Blob([ content ], { type : 'text/plain' });
$scope.url = (window.URL || window.webkitURL).createObjectURL( blob );

以启用网址:

app = angular.module(...);
app.config(['$compileProvider',
    function ($compileProvider) {
        $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|tel|file|blob):/);
}]);

请注意

  

每次调用createObjectURL()时,即使您已经为同一个对象创建了一个对象URL,也会创建一个新的对象URL。必须通过在不再需要URL.revokeObjectURL()时调用其中的每一个来释放它们。浏览器将在卸载文档时自动释放这些内容;但是,为了获得最佳性能和内存使用率,如果有明确卸载它们的安全时间,则应该这样做。

来源:MDN

答案 1 :(得分:31)

只需点击按钮即可使用以下代码下载。

in html

&#13;
&#13;
<a class="btn" ng-click="saveJSON()" ng-href="{{ url }}">Export to JSON</a>
&#13;
&#13;
&#13;

在控制器中

&#13;
&#13;
$scope.saveJSON = function () {
			$scope.toJSON = '';
			$scope.toJSON = angular.toJson($scope.data);
			var blob = new Blob([$scope.toJSON], { type:"application/json;charset=utf-8;" });			
			var downloadLink = angular.element('<a></a>');
                        downloadLink.attr('href',window.URL.createObjectURL(blob));
                        downloadLink.attr('download', 'fileName.json');
			downloadLink[0].click();
		};
&#13;
&#13;
&#13;

答案 2 :(得分:26)

试试这个

<a target="_self" href="mysite.com/uploads/ahlem.pdf" download="foo.pdf">

并访问此网站可能对您有所帮助:)

http://docs.angularjs.org/guide/

答案 3 :(得分:21)

这可以在javascript中完成,而无需打开另一个浏览器窗口。

window.location.assign('url');

替换&#39; url&#39;带有您文件的链接。如果需要从按钮触发下载,可以将其放入函数中并使用ng-click进行调用。

答案 4 :(得分:14)

在我们当前的工作项目中,我们有一个不可见的iFrame,我必须将文件的url提供给iFrame才能获得下载对话框。在按钮单击时,控制器生成动态URL并触发$ scope事件,其中列出了我编写的自定义directive。如果它已经存在,该指令会将iFrame附加到正文并在其上设置url属性。

编辑:添加指令

appModule.directive('fileDownload', function ($compile) {
    var fd = {
        restrict: 'A',
        link: function (scope, iElement, iAttrs) {

            scope.$on("downloadFile", function (e, url) {
                var iFrame = iElement.find("iframe");
                if (!(iFrame && iFrame.length > 0)) {
                    iFrame = $("<iframe style='position:fixed;display:none;top:-1px;left:-1px;'/>");
                    iElement.append(iFrame);
                }

                iFrame.attr("src", url);


            });
        }
    };

    return fd;
});

该指令响应名为downloadFile

的控制器事件

所以在你的控制器中你做

$scope.$broadcast("downloadFile", url);

答案 5 :(得分:12)

您可以将location.href设置为包含您要让用户下载的数据的data URI。除此之外,我认为只用JavaScript就没有办法做到这一点。

答案 6 :(得分:6)

如果由于不安全而无法下载文件,请添加:blob:null ...当您将鼠标悬停在下载按钮上时,您必须对其进行清理。例如,

  

var app = angular.module('app',[]);

     

的app.config(函数($ compileProvider){

$compileProvider.aHrefSanitizationWhitelist(/^\s*(|blob|):/);

答案 7 :(得分:4)

我有同样的问题,花了很多时间找到不同的解决方案,现在我加入了这篇文章中的所有评论。我希望它有用,我的答案在Internet Explorer 11,Chrome和FireFox上正确测试。< / p>

HTML:

<a href="#" class="btn btn-default" file-name="'fileName.extension'"  ng-click="getFile()" file-download="myBlobObject"><i class="fa fa-file-excel-o"></i></a>

指令:

directive('fileDownload',function(){
    return{
        restrict:'A',
        scope:{
            fileDownload:'=',
            fileName:'=',
        },

        link:function(scope,elem,atrs){


            scope.$watch('fileDownload',function(newValue, oldValue){

                if(newValue!=undefined && newValue!=null){
                    console.debug('Downloading a new file'); 
                    var isFirefox = typeof InstallTrigger !== 'undefined';
                    var isSafari = Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0;
                    var isIE = /*@cc_on!@*/false || !!document.documentMode;
                    var isEdge = !isIE && !!window.StyleMedia;
                    var isChrome = !!window.chrome && !!window.chrome.webstore;
                    var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
                    var isBlink = (isChrome || isOpera) && !!window.CSS;

                    if(isFirefox || isIE || isChrome){
                        if(isChrome){
                            console.log('Manage Google Chrome download');
                            var url = window.URL || window.webkitURL;
                            var fileURL = url.createObjectURL(scope.fileDownload);
                            var downloadLink = angular.element('<a></a>');//create a new  <a> tag element
                            downloadLink.attr('href',fileURL);
                            downloadLink.attr('download',scope.fileName);
                            downloadLink.attr('target','_self');
                            downloadLink[0].click();//call click function
                            url.revokeObjectURL(fileURL);//revoke the object from URL
                        }
                        if(isIE){
                            console.log('Manage IE download>10');
                            window.navigator.msSaveOrOpenBlob(scope.fileDownload,scope.fileName); 
                        }
                        if(isFirefox){
                            console.log('Manage Mozilla Firefox download');
                            var url = window.URL || window.webkitURL;
                            var fileURL = url.createObjectURL(scope.fileDownload);
                            var a=elem[0];//recover the <a> tag from directive
                            a.href=fileURL;
                            a.download=scope.fileName;
                            a.target='_self';
                            a.click();//we call click function
                        }


                    }else{
                        alert('SORRY YOUR BROWSER IS NOT COMPATIBLE');
                    }
                }
            });

        }
    }
})

IN CONTROLLER:

$scope.myBlobObject=undefined;
$scope.getFile=function(){
        console.log('download started, you can show a wating animation');
        serviceAsPromise.getStream({param1:'data1',param1:'data2', ...})
        .then(function(data){//is important that the data was returned as Aray Buffer
                console.log('Stream download complete, stop animation!');
                $scope.myBlobObject=new Blob([data],{ type:'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'});
        },function(fail){
                console.log('Download Error, stop animation and show error message');
                                    $scope.myBlobObject=[];
                                });
                            }; 

服务中心:

function getStream(params){
                 console.log("RUNNING");
                 var deferred = $q.defer();

                 $http({
                     url:'../downloadURL/',
                     method:"PUT",//you can use also GET or POST
                     data:params,
                     headers:{'Content-type': 'application/json'},
                     responseType : 'arraybuffer',//THIS IS IMPORTANT
                    })
                    .success(function (data) {
                        console.debug("SUCCESS");
                        deferred.resolve(data);
                    }).error(function (data) {
                         console.error("ERROR");
                         deferred.reject(data);
                    });

                 return deferred.promise;
                };

BACKEND(在SPRING上):

@RequestMapping(value = "/downloadURL/", method = RequestMethod.PUT)
public void downloadExcel(HttpServletResponse response,
        @RequestBody Map<String,String> spParams
        ) throws IOException {
        OutputStream outStream=null;
outStream = response.getOutputStream();//is important manage the exceptions here
ObjectThatWritesOnOutputStream myWriter= new ObjectThatWritesOnOutputStream();// note that this object doesn exist on JAVA,
ObjectThatWritesOnOutputStream.write(outStream);//you can configure more things here
outStream.flush();
return;
}

答案 8 :(得分:4)

如果您有权访问服务器,请考虑将标头设置为answered in this more general question

Content-Type: application/octet-stream
Content-Disposition: attachment;filename=\"filename.xxx\"

阅读有关该答案的评论,建议使用比八位字节流更具体的内容类型。

答案 9 :(得分:2)

我不想要静态网址。我有AjaxFactory来执行所有ajax操作。我从工厂获取网址并将其绑定如下。

<a target="_self" href="{{ file.downloadUrl + '/' + order.OrderId + '/' + fileName }}" download="{{fileName}}">{{fileName}}</a>

谢谢@AhlemMustapha

答案 10 :(得分:1)

这在角度上对我有用:

var a = document.createElement("a");
a.href = 'fileURL';
a.download = 'fileName';
a.click();