1.10.14.2. fejezet, File letöltése
Beküldte pzoli - 2023, április 23 - 6:59du
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>
- A hozzászóláshoz be kell jelentkezni