1.0.0 • Published 3 years ago

in-exportfile v1.0.0

Weekly downloads
2
License
ISC
Repository
-
Last release
3 years ago

Javascript File Download

文件下载

Installation

npm i in-exportfile

Usage

const exportFile = require('in-exportfile');
import Axios from axios;

function download(url: string, filename: string) {
  Axios.get(url, {
    responseType: 'blob',
  }).then(res => {
    exportFile.saveExcel(res.data, fileName);
    exportFile.saveCsv(res.data, fileName);
    exportFile.downLoadImg(res.data, fileName);
  });
}

exportFile.getImgURLs(url, fileName);