当前位置:   article > 正文

将.docx格式文件转成html,uniapp使用u-parse展示

将.docx格式文件转成html,uniapp使用u-parse展示

使用mammoth。

1、在index.html中加入:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>docx转html</title>
  8. </head>
  9. <body>
  10. <input id="document" type="file" />
  11. <div id="output" class="well"></div>
  12. </body>
  13. <script src="https://cdn.bootcdn.net/ajax/libs/mammoth/1.4.17/mammoth.browser.min.js"></script>
  14. <script type="text/javascript">
  15. document.getElementById("document").addEventListener("change", readFileInputEventAsArrayBuffer, false);
  16. function displayResult(result) {
  17. let html = result.value;
  18. console.log(html); //获得html,类似:'<p style="text-align: center; line-height: 2;"></p>'
  19. let newHTML = html
  20. .replace(//g, "")
  21. .replace("<h1>", '<h1 style="text-align: center;">')
  22. .replace(/<table>/g, '<table style="border-collapse: collapse;">')
  23. .replace(/<tr>/g, '<tr style="height: 30px;">')
  24. .replace(/<td>/g, '<td style="border: 1px solid pink;">')
  25. .replace(/<p>/g, '<p style="text-indent: 2em;">');
  26. document.getElementById("output").innerHTML = newHTML;
  27. }
  28. function readFileInputEventAsArrayBuffer(event) {
  29. var file = event.target.files[0];
  30. var reader = new FileReader();
  31. reader.onload = function (loadEvent) {
  32. var arrayBuffer = loadEvent.target.result; //arrayBuffer
  33. mammoth.convertToHtml({ arrayBuffer: arrayBuffer }).then(displayResult).done();
  34. };
  35. reader.readAsArrayBuffer(file);
  36. }
  37. </script>
  38. <!-- 参考:https://github.com/mwilliamson/mammoth.js/ -->
  39. </html>

2、从页面获得html内容。

3、uniapp中展示相关的用户协议、隐私协议之类:

  1. <template>
  2. <view>
  3. <u-parse :html="content" />
  4. </view>
  5. </template>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/384150
推荐阅读
相关标签
  

闽ICP备14008679号