Vue implements zip file download

Vue implements zip file download

This article example shares the specific code of Vue to download zip files for your reference. The specific content is as follows

el-button

<el-button size="mini" type="success" @click="downloadHandle(fileName, fileLocation)">Download</el-button>

js processing instructions

request interceptor request.js

Axios is introduced and an axios instance is created, and a request interceptor is added

import axios from 'axios'


// Create an axios instance const service = axios.create({
  baseURL: '', // baseURL of the api
  timeout: 20000, // request timeout params: {
 // Request parameters}
});

// request interceptor service.interceptors.request.use(config => {
  // .... config add processing......
  
  return config
}

export default service

The request interceptor is processed before the request and can add http headers settings, for example:

1. HTTP Request Headers: token, cookie, session and other values ​​are added (config.headers['backend value name'] = 'related value';):

(1) config.headers['token'] = 'token value';
(2) config.headers['cookie'] = 'cookie value';
(3) config.headers['session'] = 'session value';

2. Headers post settings: such as Content-Type

To upload a file, use: config.headers.post['Content-Type'] = 'multipart/form-data';

Download zip file

1. request.js code:

import axios from 'axios'


// Create an axios instance const service = axios.create({
  baseURL: '', // baseURL of the api
  timeout: 20000, // request timeout params: {
 // Request parameters}
});

// request interceptor service.interceptors.request.use(config => {
  // config add token value config.headers['token'] = getToken(); // getToken() is my value acquisition method, system verification uses return config
}

export default service

2. Vue page references request.js

import request from '@/utils/request'

Download Processing

// fileName download setting name, fileLocation file storage name downloadHandle(fileName,fileLocation) {
   let prome = {
     fileLocation: fileLocation
   }
   request.post(
    '/api/downloadFile', 
    prome, 
    {
      responseType: 'blob',
      timeout: 60000
    }
   ).then(response => {
     if (!response.size) {
       this.$message({
         message: 'No file available for download',
         type: 'warning'
       })
       return
     }
     const url = window.URL.createObjectURL(new Blob([response]))
     const link = window.document.createElement('a')
     link.style.display = 'none'
     link.href = url
     link.setAttribute('download', fileName+'.zip')
     document.body.appendChild(link)
     link.click()
   }).catch((data) => {
     console.log(data)
   })
},

Background Processing

Processed by the Java API based on the request /api/downloadFile

package com.web.controller;

import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.File;
import java.io.FileInputStream;
import java.io.OutputStream;
import java.net.URLEncoder;
import java.util.Map;

@RestController
@RequestMapping("/api")
public class DownloadFileDemo {

    /**
     * File download * @param tranNap
     * @param request
     * @param response
     */
    @RequestMapping(value = "/downloadFile")
    public void downloadFile(@RequestBody Map<String, Object> tranNap, HttpServletRequest request, HttpServletResponse response) {
        String fileLocation = tranNap.get("fileLocation")+"";
        try {
            String filePath = "D:/file/" + fileLocation + ".zip";
            //Get the file File file = new File(filePath);
            if (!file.exists()) {
                System.out.println("[File Download] No file available for download");
                return;
            }
            FileInputStream fileInputStream = new FileInputStream(file);
            //Set the Http response header to tell the browser to download the file name Filename
            response.setHeader("Content-Disposition", "attachment;Filename=" + URLEncoder.encode(fileLocation+".zip", "UTF-8"));
            OutputStream outputStream = response.getOutputStream();
            byte[] bytes = new byte[2048];
            int len ​​= 0;
            while ((len = fileInputStream.read(bytes)) > 0) {
                outputStream.write(bytes, 0, len);
            }
            fileInputStream.close();
            outputStream.close();
        } catch (Exception e) {
            System.out.println("[File download] Download file exception");
            e.printStackTrace();
            return;
        }
    }

}

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Vue implements the function of clicking a button to download files
  • How to download files and determine status in VUE
  • Tutorial on how to batch download files/pictures in zip using Vue
  • Summary of three ways to download files in front-end vue

<<:  How to install docker on ubuntu20.04 LTS

>>:  How to install WSL2 Ubuntu20.04 on Windows 10 and set up the docker environment

Recommend

Some small methods commonly used in html pages

Add in the <Head> tag <meta http-equiv=&q...

Experience in designing a layered interface in web design

Many netizens often ask why their websites always ...

14 practical experiences on reducing SCSS style code by 50%

Preface Sass is an extension of the CSS3 language...

Tomcat obtains the client domain name of Nginx reverse proxy

question After Nginx reverse proxy, the Tomcat ap...

MySQL slow query: Enable slow query

1. What is the use of slow query? It can record a...

How to install and use Server-U 14 version

Introducing Server-U software Server-U is a very ...

How to use jconsole to monitor remote Tomcat services

What is JConsole JConsole was introduced in Java ...

Example of downloading files with vue+django

Table of contents 1. Overview 2. Django Project 3...

Summary of how to use bootstrap Table

This article shares with you how to use bootstrap...

How to find out uncommitted transaction information in MySQL

A while ago, I wrote a blog post titled "Can...

Analysis of MySQL general query log and slow query log

The logs in MySQL include: error log, binary log,...

Tomcat configuration and how to start it in Eclipse

Table of contents How to install and configure To...

Using zabbix to monitor the ogg process (Windows platform)

This article introduces how to monitor the ogg pr...

Two solutions for Vue package upload server refresh 404 problem

1: nginx server solution, modify the .conf config...

Example of deploying MySQL on Docker

Table of contents 1 What is container cloud? 2 In...