AngularJS - 如何通过单击按钮下载文件?

时间:2015-05-20 08:47:52

标签: javascript angularjs

我使用一个简单的按钮,点击它会运行下一个代码(通过使用ng-click)

      scope.download_body = function(domain){

        var url = cfg.base+'accessLogBody?site='+domain;
          $http({withCredentials: true, cache:true, method: 'GET', url: url}).
              success(function(data, status, headers, config) {
                    console.log("$$$$$")
              }).
              error(function(data, status, headers, config) {
                 console.log("******")
              });            

      };

问题是我找到了代码的成功部分,但没有文件下载。

我如何使用此代码才能让浏览器下载文件?

感谢您提供任何帮助

0 个答案:

没有答案