Stimulsoft Reports.JS是一个使用JavaScript和HTML5生成报表的平台。它拥有所有拥来设计,编辑和查看报表的必需组件。该报表工具根据开发人员数量授权而不是根据应用程序的用户数量。接下来通过本文给大家介绍vue-cli使用stimulsoft.reports.js的方法,一起看看吧
vue-cli使用stimulsoft.reports.js(保姆级教程)
第一部分:数据源准备
以下是JSON数据的教程
json数据结构
1 2 3 4 5 | { "数据源名":[ // ...数据列表 ] } |
自己的测试JSON数据
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | { "data": [ { "a": "我是A", "b": "我是B", "c": "我是C" }, { "a": "我是A", "b": "我是B", "c": "我是C" }, { "a": "我是A", "b": "我是B", "c": "我是C" } ] } |
附上官方处数据(自己删减了一些数据让读者能更好看懂结构)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | { "Customers": [{ "CustomerID": "ALFKI", "CompanyName": "Alfreds Futterkiste", "ContactName": "Maria Anders", "ContactTitle": "Sales Representative", "Address": "Obere Str. 57", "City": "Berlin", "Region": null, "PostalCode": "12209", "Country": "Germany", "Phone": "030-0074321", "Fax": "030-0076545" }, { "CustomerID": "ANATR", "CompanyName": "Ana Trujillo Emparedados y helados", "ContactName": "Ana Trujillo", "ContactTitle": "Owner", "Address": "Avda. de la Constitución 2222", "City": "México D.F.", "Region": null, "PostalCode": "05021", "Country": "Mexico", "Phone": "(5) 555-4729", "Fax": "(5) 555-3745" }] } |
第二部分:vue-cli引入stimulsoft.reports.js
附上App.vue代码
分别有展示数据、打印数据、保存数据、导入json数据的功能测试
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 10 | <template> <div id="app"> <div> <h2>Stimulsoft Reports.JS Viewer</h2> <button @click="print">打印</button> <button @click="save">保存</button> <button @click="setJson">设置JSON</button> <div id="viewer"></div> </div> </div> </template> <script> export default { name: "app", data() { return {}; }, // 加载官方示例模板代码 mounted: function () { console.log("加载查看器视图"); // 工具栏 console.log("创建具有默认选项的报表查看器"); var viewer = new window.Stimulsoft.Viewer.StiViewer( null, "StiViewer", false ); // 报表 console.log("创建一个新的报表实例"); var report = new window.Stimulsoft.Report.StiReport(); // 加载文件 console.log("从url加载报告"); report.loadFile("/reports/SimpleList.mrt"); // 创建报表 console.log("将报表分配给查看器,报表将在呈现查看器之后自动生成 "); viewer.report = report; // 注入标签 console.log("将查看器呈现给选定的元素"); viewer.renderHtml("viewer"); console.log("加载成功完成!"); }, methods: { // 调用打印机打印数据 print() { var report = new window.Stimulsoft.Report.StiReport(); report.loadFile("/reports/SimpleList.mrt"); report.print(); }, // 导出保存数据 save() { var report = new window.Stimulsoft.Report.StiReport(); report.loadFile("/reports/SimpleList.mrt"); // 将呈现的报告保存为JSON字符串 var json = report.saveDocumentToJsonString(); console.log("json", json); // 获取报告文件名 var fileName = report.reportAlias ? report.reportAlias : report.reportName; console.log("report.reportName", report.reportName); console.log("report.reportAlias", report.reportAlias); console.log("fileName", fileName); // 将数据保存到文件 window.Stimulsoft.System.StiObject.saveAs( json, fileName + ".mdc", "application/json;charset=utf-8" ); }, // 获取json数据并写入页面 setJson() { var report = new window.Stimulsoft.Report.StiReport(); // report.loadFile("/reports/SimpleList.mrt");// 官方数据模板 report.loadFile("/reports/Test.mrt");// 自己的数据模板 // 创建新的DataSet对象 var dataSet = new window.Stimulsoft.System.Data.DataSet("JSON"); // 将JSON数据文件从指定的URL加载到DataSet对象 // dataSet.readJsonFile("/reports/Demo.json");//官方数据 dataSet.readJsonFile("/reports/Test.json");// 自己的json数据 //文件用上面的readJsonFile方式导入,接口网络请求用下面这种方式进行导入 // let json=/*此处省略获取数据请求*/ // dataSet.readJson(JSON.stringify(json)); // 清除报告模板中数据 report.dictionary.databases.clear(); // 注册数据集对象 report.regData("JSON", "JSON", dataSet); // 用注册数据呈现报表 // report.render(); // 工具栏 var viewer = new window.Stimulsoft.Viewer.StiViewer( null, &n
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。 相关文章阅读 |