How does Vue download non-same-origin files based on URL

How does Vue download non-same-origin files based on URL

Generally speaking, we can have the following two solutions when downloading files based on URL:

1. window.open(url)
2. <a :href="url" rel="external nofollow" download="file name"/>

However, during the development process, we sometimes encounter situations where the file address returned by the backend is not from the same source as our website. When using the above two solutions to download images, PDFs and other files, the browser will open them directly instead of downloading them. The following method can solve this situation:
Download file function encapsulation: (views/util/index.js)

import axios from "axios";
// Download the file (can solve the cross-domain download problem)
export async function downloadFile(fileUrl, fileName) {
  if (!fileUrl) return;
  let res = await axios({
    method: "get",
    url: fileUrl,
    responseType: "blob"
  });
  let newUrl = window.URL.createObjectURL(res.data);
  let a = document.createElement("a");
  a.href = newUrl;
  a.download = fileName;
  a.click();
  a.remove();
  //After the resource download is complete, you can manually clear the cache resources occupied by createObjectURL window.URL.revokeObjectURL(newUrl);
}

use

<template>
  <div>
      {{file.name}}
      <span
        class="file-download"
        @click="downloadFile(file.url, file.name)"
        >Download
      >
  </div>
</template>

<script>
import { downloadFile } from "@/util/index.js";
export default {
  components: {},
  data() {
    return {
      file:{
          url:'https://gimg2.baidu.com/image_search/src=http%3A%2F%2Fb.zol-img.com.cn%2Fdesk%2Fbizhi%2Fimage%2F6%2F960x600%2F1426818724752.jpg&refer=http%3A%2F%2Fb.zol-img.com.cn&app=2002&size=f9999,10000&q=a80&n=0&g=0n&fmt=jpeg?sec=1627377638&t=662034e86ff9110854ca0316485e294b',
          name:'Beautiful scenery'
      }
    };
  },
  created() {},
  mounted() {},
  methods: {
    downloadFile
  }
};
</script>

<style lang="scss" scoped>

</style>

PS: The best solution for downloading files by clicking URL in vue

This kind of function is often encountered in development. Users upload files or attachments to the server, and the backend puts the files in FTP or other locations. There is a download entry in the front-end page. Sometimes, the backend returns a blob, which is of course the best. However, for convenience, the backend may also return the URL of the file location. At this time, the front-end may encounter some problems. For example, the browser may flash when downloading files. When downloading pictures, JSON files and other files supported by the browser, they will not be downloaded, but directly opened in the browser. The following method can perfectly solve such problems.

Solution:

  • Encapsulating custom instructions
  • Convert the URL to bold and create a tag to download the blob

Code Implementation

  • Create a new directory download-load-url in the directive folder under src
  • down-load-url/index.js file
/*
 * The backend returns the URL of the file, and the frontend creates a tag to download it*
 * 1. Solved the problem that if the file is a picture or a format supported by the browser, the file will be opened directly when clicking download.
 * 2. When downloading files, the browser may flicker*
 * Use in the page * 1. Import the directive import downLoad from '@/directive/down-load-url'
 * 2. Register directives:{downLoad}
 * 3. Use it as a command on the download button, for example: <el-button v-downLoad="url">Download</el-button>
 */

import downLoad from './downLoad'

const install = function(Vue) {
  Vue.directive('downLoadUrl', downLoad)
}

downLoad.install = install

export default downLoad
down-load-url/downLoad.js file export default {
  bind(el, binding) {
    el.addEventListener('click', () => {
      console.log(binding.value) // url
      const a = document.createElement('a')
      // let url = baseUrl + binding.value // If the url is incomplete, you need to concatenate baseURL
      const url = binding.value // The complete url is used directly // Here is to convert the url into a blob address,
      fetch(url).then(res => res.blob()).then(blob => { // Convert the link address string content into a blob address a.href = URL.createObjectURL(blob)
        console.log(a.href)
        a.download = '' // Name of the downloaded file// a.download = url.split('/')[url.split('/').length -1] // // Name of the downloaded filedocument.body.appendChild(a)
        a.click()
      })
    })
  }
}

This is the end of this article about how Vue can download non-same-origin files according to URL. For more relevant Vue URL download file content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • vue.js downloads pictures according to picture url
  • Share the best solution for clicking URL to download files in Vue

<<:  Tutorial on installing rabbitmq using yum on centos8

>>:  Detailed explanation of how MySQL (InnoDB) handles deadlocks

Recommend

Tips for implementing multiple borders in CSS

1. Multiple borders[1] Background: box-shadow, ou...

mysql charset=utf8 do you really understand what it means

1. Let's look at a table creation statement f...

Use of MySQL query rewrite plugin

Query Rewrite Plugin As of MySQL 5.7.6, MySQL Ser...

Detailed explanation of the use of Vue3 state management

Table of contents background Provide / Inject Ext...

XHTML introductory tutorial: text formatting and special characters

<br />This section introduces how to impleme...

How to implement a binary search tree using JavaScript

One of the most commonly used and discussed data ...

Docker+nextcloud to build a personal cloud storage system

1. Docker installation and startup yum install ep...

Vue calls the PC camera to realize the photo function

This article example shares the specific code of ...

js to achieve simple drag effect

This article shares the specific code of js to ac...

The meaning of the 5 types of spaces in HTML

HTML provides five space entities with different ...

Common parameters of IE web page pop-up windows can be set by yourself

The pop-up has nothing to do with whether your cur...

4 ways to modify MySQL root password (summary)

Method 1: Use the SET PASSWORD command First log ...

VMware Workstation 14 Pro installs CentOS 7.0

The specific method of installing CentOS 7.0 on V...

How to use rem adaptation in Vue

1. Development environment vue 2. Computer system...

Mysql sorting and paging (order by & limit) and existing pitfalls

Sorting query (order by) In e-commerce: We want t...