AngularJs 中将表格导出生成Excel表

工程结构如下图:

这里写图片描述

直接贴代码:

1,views: usageTracking.html

<div class="wisdomPark-ui-form list"
    data-ng-controller=" usageTrackingController as usageTrackingCtrl">
    <section class="wisdomPark-ui-wrap">
        <div class="wisdomPark-ui-wrap-header">
            <span>查询条件</span>
            <div class="col-xs-3 fr">
                <button data-ng-click="usageTrackingCtrl.ToExcel('ta')"
                        class="wisdomPark-ui-btn wisdomPark-ui-btn-red">导出</button>
            </div>
        </div>
        <div class="collapse in">
            <div class="wisdomPark-ui-wrap-body">
                <div class="row">
                    <div class="col-xs-12">
                        <table id="ta" width="852" border="0" >

                        </table>
                    </div>
                </div>
            </div>
        </div>
    </section>
</div>

2, services:usageTrackingService.js

/**
 * sampleService
 */
(function() {
    'use strict';
    angular.module('app.usagetracking').service('usageTrackingService', usageTrackingService);

    usageTrackingService.$inject = [ '$filter', '$q', 'httpService' ];

    function usageTrackingService($filter, $q, httpService) {

        this.getAllDataCount = getAllDataCount;
        this.ToExcel = ToExcel;



        /**
         * 查询 全平台业务数据总数 
         */
        function getAllDataCount(param) {
            return httpService.http({
                domain : "saas-usage-tracking",
                url : "innodb/getAllDataCount",
                method : "POST",
                data : null,
                successCallback : function(msg) {
                    // 如有需要在此操作
                }
            });
        }



         /**
         *导出Excel文件
         */

        var idTmr;
        function getExplorer() {
            var explorer = window.navigator.userAgent;
            //ie
            if (explorer.indexOf("MSIE") >= 0) {
                return 'ie';
            }
            //firefox
            else if (explorer.indexOf("Firefox") >= 0) {
                return 'Firefox';
            }
            //Chrome
            else if (explorer.indexOf("Chrome") >= 0) {
                return 'Chrome';
            }
            //Opera
            else if (explorer.indexOf("Opera") >= 0) {
                return 'Opera';
            }
            //Safari
            else if (explorer.indexOf("Safari") >= 0) {
                return 'Safari';
            }
        }
        function ToExcel(tableid) {
            //整个表格拷贝到EXCEL中
            if (getExplorer() == 'ie') {
                var curTbl = document.getElementById(tableid);
                var oXL = new ActiveXObject("Excel.Application");
                //创建AX对象excel
                var oWB = oXL.Workbooks.Add();
                //获取workbook对象
                var xlsheet = oWB.Worksheets(1);
                //激活当前sheet
                var sel = document.body.createTextRange();
                sel.moveToElementText(curTbl);
                //把表格中的内容移到TextRange中
                sel.select;
                //全选TextRange中内容
                sel.execCommand("Copy");
                //复制TextRange中内容
                xlsheet.Paste();
                //粘贴到活动的EXCEL中
                oXL.Visible = true;
                //设置excel可见属性
                try {
                    var fname = oXL.Application.GetSaveAsFilename("Excel.xls",
                            "Excel Spreadsheets (*.xls), *.xls");
                } catch (e) {
                    print("Nested catch caught " + e);
                } finally {
                    oWB.SaveAs(fname);
                    oWB.Close(savechanges = false);
                    //xls.visible = false;
                    oXL.Quit();
                    oXL = null;
                    //结束excel进程,退出完成
                    //window.setInterval("Cleanup();",1);
                    idTmr = window.setInterval("Cleanup();", 1);
                }
            } else {
                tableToExcel('ta');
            }   
        //return 1;
        }
        function Cleanup() {
            window.clearInterval(idTmr);
            CollectGarbage();
        }
        var tableToExcel = (function() {
            var uri = 'data:application/vnd.ms-excel;base64,', template = '<html><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body><table>{table}</table></body></html>', base64 = function(
                    s) {
                return window.btoa(unescape(encodeURIComponent(s)))
            }, format = function(s, c) {
                return s.replace(/{(\w+)}/g, function(m, p) {
                    return c[p];
                })
            }
            return function(table, name) {
                if (!table.nodeType)
                    table = document.getElementById(table)
                var ctx = {
                    worksheet : name || 'Worksheet',
                    table : table.innerHTML
                }
                window.location.href = uri + base64(format(template, ctx))
            }
        })(); 
        //end of "导出Excel文件 "



    }
})();

3,controllers:usageTrackingControllerLists.js

(function() {
    'use strict';
    angular.module('app.usagetracking').controller('usageTrackingController',
            usageTrackingController);

    usageTrackingController.$inject = [ '$scope', '$timeout', '$state',
            '$stateParams', 'usageTrackingService', 'httpService',
            'listgridService', 'notificationService', 'i18nService' ];

    function usageTrackingController($scope, $timeout, $state, $stateParams,
            usageTrackingService, httpService, listgridService,
            notificationService, i18nService) {
        var vm = this;
        activate();
        function activate() {
            vm.dataList = [];
            i18nService.setCurrentLang('zh-cn');
            vm.searchParam = {
                page : 1,
                pageSize : 10,
                sortParamList : []
            };

            vm.allDataCount = 0;

             httpService.processHttp(
                        usageTrackingService.getAllDataCount,
                        null,
                        function(data){
                            vm.allDataCount = data;
                        }
                    );

            /**
             * 数据导出成Excel
             */
            vm.ToExcel = function(tableId) {

                setTimeout(function() {
                    usageTrackingService.ToExcel(tableId);

                }, 1000);

            }

        }
    }
})();
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值