1 . 安装 ,引入

yarn add docxtemplater pizzip jszip-utils file-saver

  1. import docxtemplater from "docxtemplater";
  2. import JSZip from "pizzip";
  3. import JSZipUtils from "jszip-utils";
  4. import { saveAs } from "file-saver";

2. 设置模版

新建一个tpl.docx文档,放在 public 目录下,内容如下

image.png
模版内部的{}内部的称之为变量,最后会被替换掉

3. 页面应用

  1. <template>
  2. <div class="container">
  3. <button @click="handleGet">获取</button>
  4. <button @click="handleExport">导出</button>
  5. <div class="viewer" v-html="html"></div>
  6. </div>
  7. </template>
  8. <script>
  9. import axios from "axios";
  10. import docxtemplater from "docxtemplater";
  11. import JSZip from "pizzip";
  12. import JSZipUtils from "jszip-utils";
  13. import { saveAs } from "file-saver";
  14. export default {
  15. components: {},
  16. data() {
  17. return {
  18. html: {},
  19. };
  20. },
  21. methods: {
  22. getData() {
  23. axios
  24. .get("/api/AutoAnalysis/GetWarnAnalysisStatistics")
  25. .then((res) => {
  26. console.log(res.Reault); //请求的返回体
  27. this.html = res.data;
  28. })
  29. .catch((error) => {
  30. console.log(error); //异常
  31. });
  32. },
  33. handleGet() {
  34. this.getData();
  35. },
  36. handleExport() {
  37. this.exportWord();
  38. },
  39. exportWord() {
  40. let _this = this;
  41. // 读取并获得模板文件的二进制内容
  42. JSZipUtils.getBinaryContent("tel.docx", function (error, content) {
  43. // word.docx是模板。我们在导出的时候,会根据此模板来导出对应的数据
  44. // 抛出异常
  45. if (error) {
  46. throw error;
  47. }
  48. // 创建一个JSZip实例,内容为模板的内容
  49. let zip = new JSZip(content);
  50. // 创建并加载docxtemplater实例对象
  51. let doc = new docxtemplater().loadZip(zip);
  52. // 设置模板变量的值
  53. doc.setData({
  54. ..._this.html,
  55. });
  56. try {
  57. // 用模板变量的值替换所有模板变量
  58. doc.render();
  59. } catch (error) {
  60. // 抛出异常
  61. let e = {
  62. message: error.message,
  63. name: error.name,
  64. stack: error.stack,
  65. properties: error.properties,
  66. };
  67. // console.log(JSON.stringify({ error: e }));
  68. this.$message.error("导出报表失败");
  69. throw error;
  70. }
  71. // 生成一个代表docxtemplater对象的zip文件(不是一个真实的文件,而是在内存中的表示)
  72. let out = doc.getZip().generate({
  73. type: "blob",
  74. mimeType:
  75. "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
  76. });
  77. // 将目标文件对象保存为目标类型的文件,并命名
  78. saveAs(out, "测试.docx");
  79. });
  80. },
  81. },
  82. };
  83. </script>
  84. <style scoped lang="less">
  85. .container {
  86. width: 100%;
  87. height: 100%;
  88. }
  89. </style>

4.,结果如下

image.png

5.prefect