>>分享Web前端开发技术,并对孙卫琴的《精通Vue.js:Web前端开发技术详解》提供技术支持 书籍支持  卫琴直播  品书摘要  在线测试  资源下载  联系我们
发表一个新主题 开启一个新投票 回复文章 您是本文章第 15966 个阅读者 刷新本主题
 * 贴子主题:  vue实现Word或Excel文档导出的功能,转换文件名乱码或者json格式 回复文章 点赞(0)  收藏  
作者:mary    发表时间:2021-02-04 04:23:33     消息  查看  搜索  好友  邮件  复制  引用

    

一、导出word

文件名乱码,使用 JavaScript 对其进行编码

解决方案:使用 escape 函数对其编码,之后再根据需求使用 decodeURI 或者 decodeURIComponent 对其解码
也是找了好久的解决乱码的方法,参考自https://blog.csdn.net/weixin_34290000/article/details/91478275

例子

            点击在新窗口中浏览原图
CTRL+鼠标滚轮放大或缩小

     解码

                        点击在新窗口中浏览原图
CTRL+鼠标滚轮放大或缩小


         代码(页面直接调用,文章末尾加入公用方法)        

this.$axios.get(ExportOrganScale,{params:db}, {responseType: `blob` })
                .then(res => {
                  console.log(res)
                    //  word文档为msword,pdf文档为pdf,msexcel 为excel(目前get请求只测试了word下载)
                    let blob = new Blob([res.data], {type: `application/msword`});
                    let objectUrl = URL.createObjectURL(blob);
                    let link = document.createElement("a");
                    const fileName = res.headers["content-disposition"].match(/filename=(\S*).doc/)[1];
                    let formatString = escape(fileName)
                    let fname=decodeURI(formatString)+'.doc'
                    link.href = objectUrl;
                    link.setAttribute("download", fname);
                    document.body.appendChild(link);
                    link.click();                
                });

二、导出Excel(此处写了公共方法)

1、在components中建立文件common.js,用于存放导出Excel的公共方法derivesXLS

备注:communalApi是分类(名字可随意修改),用于包含所有的公用方法

2、在main.js中引入公共js    

import common from "./components/common"
Vue.prototype.common = common

  3、编写导出公用方法:options接收传递参数(参数及接口)    

import axios from 'axios'
export default {
communalApi:{
   derivesXLS(options) { //导出 xls
            axios.post(options.url, options.db, {
                    responseType: "arraybuffer"
                })
                .then(
                    res => {
                        if(res.headers["content-disposition"]==undefined){ //没有文件
                            var enc = new TextDecoder('utf-8')
                            var txt = JSON.parse(enc.decode(new Uint8Array(res.data)))
                            if(txt.code==0){
                                this.$message.error(txt.msg);
                                return;
                            }
                        }
                        let blob = new Blob([res.data], {
                            type: "application/vnd.ms-excel"
                        });
                        const fileName = res.headers[
                            "content-disposition"
                        ].match(/filename=(\S*).xls/)[1];
                        const elink = document.createElement("a");
                        elink.download = JSON.parse(fileName) + ".xls";
                        elink.href = window.URL.createObjectURL(blob);
                        elink.click();
                        window.URL.revokeObjectURL(elink.href);
                    },
                    err => {}
                );
        },
}
}

  4、页面使用    

var db={}//请求参数
this.common.communalApi.derivesXLS({
              url: '接口名称',
              db: db
            });

三、导出Word公用方法

方法    

  derivesDoc(options) {//导出word
            axios.get(options.url, {params:options.db}, {
                responseType: "arraybuffer"
            })
            .then(
                res => {
                    //  word文档为msword,pdf文档为pdf,msexcel 为excel(目前get请求只测试了word下载)
                    let blob = new Blob([res.data], {type: `application/msword`});
                    let objectUrl = URL.createObjectURL(blob);
                    let link = document.createElement("a");
                    const fileName = res.headers["content-disposition"].match(/filename=(\S*).doc/)[1];
                    let formatString = escape(fileName)
                    let fname=decodeURI(formatString)+'.doc'
                    link.href = objectUrl;
                    link.setAttribute("download", fname);
                    document.body.appendChild(link);
                    link.click();
                },
                err => {}
            );
        },

  页面使用同导出Excel页面公用方法调用一致

4、结语:今天是努力填坑的一天,fignting!!!

      点击在新窗口中浏览原图
CTRL+鼠标滚轮放大或缩小

----------------------------
原文链接:https://www.jianshu.com/p/f9a7a0183088
作者:  後弦月的雨
程序猿的技术大观园:www.javathinker.net



[这个贴子最后由 flybird 在 2021-02-08 22:40:55 重新编辑]
  Java面向对象编程-->继承
  JavaWeb开发-->JSP技术详解(Ⅰ)
  JSP与Hibernate开发-->数据库事务的概念和声明
  Java网络编程-->安全网络通信
  精通Spring-->计算属性和数据监听
  Vue3开发-->Vue CLI脚手架工具
  10个开发者经常问的JavaScript面试题(附答案解析)
  不可错过的几种JS优化技巧
  vue3-Composition-API的用法
  介绍axios的基本使用(vue中使用axios)
  js Worker 线程收集1~9999的之间所有质数;Worker线程交换数...
  Vue之引用第三方JS插件,CKPlayer使用
  HTML标签的全局属性
  HTML5 语义元素
  HTML5 地理定位
  HTML 基础知识
  JavaScript 测试 jQuery
  JavaScript 库
  JavaScript 函数参数
  JavaScript HTML DOM 节点列表
  JavaScript 正则表达式
  更多...
 IPIP: 已设置保密
树形列表:   
1页 0条记录 当前第1
发表一个新主题 开启一个新投票 回复文章


中文版权所有: JavaThinker技术网站 Copyright 2016-2026 沪ICP备16029593号-2
荟萃Java程序员智慧的结晶,分享交流Java前沿技术。  联系我们
如有技术文章涉及侵权,请与本站管理员联系。