实现导出功能分两种,一种是客户端拿到数据做导出,第二种是服务器端处理好,返回一个数据流实现导出 第一种网上很容易找到,也很好用,本文要说的是第二种. fetchExport({ id: this.sourceId, begin: this.$route.query.begin, end: this.$route.query.end }).then(res => { const blob = new Blob([res.data], { type: 'application/vnd.ms-exce…