test

Posted wush-1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了test相关的知识,希望对你有一定的参考价值。

技术图片
<html>
    <meta charset="UTF-8">
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
    <head>
        <input type="text" name="" id="content" value="" />
        <p style="font-size: 20px;color: red;">使用table标签方式将json导出xls文件</p>
        <button onclick=‘aa()‘>导出</button>
    </head>

    <body>
        <script>
            function aa(){
                var content = $(‘#content‘).val()
                debugger
                console.log(content);
                
            }
            
            
            function tableToExcel() {
                
                
                
                
                
                //要导出的json数据
                const jsonData = [{
                        name: ‘路人甲‘,
                        phone: ‘123456‘,
                        email: ‘123@123456.com‘
                    },
                    {
                        name: ‘炮灰乙‘,
                        phone: ‘123456‘,
                        email: ‘123@123456.com‘
                    },
                    {
                        name: ‘土匪丙‘,
                        phone: ‘123456‘,
                        email: ‘123@123456.com‘
                    },
                    {
                        name: ‘流氓丁‘,
                        phone: ‘123456‘,
                        email: ‘123@123456.com‘
                    },
                ]
                //列标题
                let str = ‘<tr><td>姓名</td><td>电话</td><td>邮箱</td></tr>‘;
                //循环遍历,每行加入tr标签,每个单元格加td标签
                for(let i = 0; i < jsonData.length; i++) {
                    str += ‘<tr>‘;
                    for(let item in jsonData[i]) {
                        //增加	为了不让表格显示科学计数法或者其他格式
                        str += `<td>${ jsonData[i][item] + ‘	‘}</td>`;
                    }
                    str += ‘</tr>‘;
                }
                //Worksheet名
                let worksheet = ‘Sheet1‘
                let uri = ‘data:application/vnd.ms-excel;base64,‘;

                //下载的表格模板数据
                let template = `<html xmlns:o="urn:schemas-microsoft-com:office:office" 
      xmlns:x="urn:schemas-microsoft-com:office:excel" 
      xmlns="http://www.w3.org/TR/REC-html40">
      <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>${str}</table></body></html>`;
                //下载模板
                window.location.href = uri + base64(template)
            }
            //输出base64编码
            function base64(s) {
                return window.btoa(unescape(encodeURIComponent(s)))
            }
        </script>
    </body>

</html>
View Code

 

以上是关于test的主要内容,如果未能解决你的问题,请参考以下文章

webstorm代码片段的创建

json [test snippet]这是一个测试片段#test

java代码在片段活动中不起作用

csharp c#test片段

这两个代码片段之间有区别吗?如果有,那又如何? [复制]

片段中ListView的setOnItemClickListener