1.10.14.2. fejezet, File letöltése

Kapcsolódó hivatkozások

Minta kód

import axios from 'axios'
import fileDownload from 'js-file-download'
 
handleDownload = (url, filename) => {
  axios.get(url, {
    responseType: 'blob',
  })
  .then((res) => {
    fileDownload(res.data, filename)
  })
}
 
<button onClick={() => {handleDownload('https://infokristaly.hu/sites/default/files/DSC03279.JPG', 'infokristaly.jpg')
}}>Image</button>