您现在的位置是:首页 > 唯美句子

vue 纯前端 word 转html

作者:往北时间:2024-05-08 09:47:37分类:唯美句子

简介  文章浏览阅读1k次。vue2 安装 npm install -save mammoth.js ---word转换html插件。html代码 用的vue ant-design-vue。_vue组件 word转html

点击全文阅读

vue2   安装   npm install -save mammoth.js ---word转换html插件
html代码  用的vue  ant-design-vue

 <a-upload name="file"  accept=".pdf,.doc,.docx" :before-upload="beforeUpload">            <a-button>              <a-icon type="upload" /> 选择 </a-button>          </a-upload>
import  mammoth from 'mammoth';
 beforeUpload(file){    if (!file) {      return;    }    console.log(file+"input")    let fileType = ['.docx','.doc']       let { name } = file;       let nameLen = name.length;      let hzIndex = name.lastIndexOf(".");      //获取后缀名      let hz = name.substring(hzIndex, nameLen);      if (!fileType.includes(hz)) {        this.$message.warning({          message: "注意:只支持docx格式的文档",        })        return false      }      console.log(hz);      var that = this;          var reader = new FileReader();      reader.readAsArrayBuffer(file);       reader.onload = function (loadEvent) {                console.log(loadEvent.target.result);                var arrayBuffer = loadEvent.target.result;               mammoth.convertToHtml({ arrayBuffer: arrayBuffer })                    .then(                      function (resultObject) {                        setTimeout(function(){                          that.agreeContent = resultObject.value                        }, 300);                        console.log(resultObject.value);//这个就是我们得到的html       }).done();                            };    },

点击全文阅读

郑重声明:

本站所有活动均为互联网所得,如有侵权请联系本站删除处理

我来说两句