vue axios实现导入导出

 // axios导出函数,参数为导出的接口地址
    downloadExcel(exportUrl) {
      axios({
        method: "get",
        url: exportUrl,
        headers: {
          "Content-Type": "application/x-www-form-urlencoded;charset=utf-8",
          Authorization: "Bearer " + sessionStorage.getItem("loginToken") || "",
        },
        responseType: "blob",
      })
        .then((res) => {
          let data = res.data;
          let url = window.URL.createObjectURL(new Blob([data]));
          let link = document.createElement("a");
          link.style.display = "none";
          link.href = url;
          // if(this.item.excalName !== '' && this.item.excalName !== null && this.item.excalName !== undefined) {
          //   link.setAttribute("download", this.item.excalName);
          // } else {
          link.setAttribute("download", "客户列表.xls");
          // }
          document.body.appendChild(link);
          link.click();
        })
        .catch((err) => console.log(err));
    },
Vue中添加导入导出功能,你可以使用`axios`或其他HTTP库来处理文件上传和下载。这里是一个基础的例子: 首先,在HTML模板中,创建输入元素和两个按钮: ```html <div id="app"> <input type="file" @change="uploadFile($event)" accept=".csv, .xlsx" /> <button @click="downloadData">导出</button> <!-- ...其他内容... --> </div> ``` 在`methods`中定义`uploadFile`和`downloadData`方法: ```javascript export default { methods: { uploadFile(e) { const file = e.target.files[0]; if (!file) return; this.upload(file); }, async upload(file) { try { const formData = new FormData(); formData.append('file', file); await axios.post('/api/upload', formData, { headers: {'Content-Type': 'multipart/form-data'} }); // 提交成功后,可能需要从服务器获取新的状态或数据 this.importedData = '导入成功'; // 只是一个示例,实际取决于服务器响应 } catch (error) { console.error('上传失败', error); } }, downloadData() { // 你需要在这里从服务器获取数据 const downloadedData = this.exportedData; // 假设你已经有了导出的数据 this.download(downloadedData, 'data.csv'); // 下载文件 }, download(data, filename) { const blob = new Blob([data], {type: 'text/csv'}); // 使用URL.createObjectURL生成临时链接 const url = URL.createObjectURL(blob); // 创建a标签触发下载 const a = document.createElement('a'); a.href = url; a.download = filename; a.click(); // 清理临时链接 setTimeout(() => URL.revokeObjectURL(url), 0); } } } ``` 以上代码展示了如何通过`axios`发送文件上传请求(`uploadFile`)和发起下载请求(`downloadData`)。注意,这只是一个简化的示例,实际情况中你可能需要根据服务器API的实际需求调整代码。
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

china-yun

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值