Skip to content

Instantly share code, notes, and snippets.

@shenqihui
Created October 25, 2017 10:01
Show Gist options
  • Save shenqihui/1a9cc5f28e49a4f30c3f50686bb3e60d to your computer and use it in GitHub Desktop.
Save shenqihui/1a9cc5f28e49a4f30c3f50686bb3e60d to your computer and use it in GitHub Desktop.
react download
const onDownload = (link) => {
const tempLink = document.createElement('a');
tempLink.href = link;
tempLink.setAttribute('download', 'img.png');
tempLink.setAttribute('target', '_blank');
document.body.appendChild(tempLink);
setTimeout(() => {
tempLink.setAttribute('download', 'qrcode.png');
tempLink.click();
document.body.removeChild(tempLink);
}, 1000);
};
<a onClick={onDownload.bind(this, 'https://www.baidu.com/img/bd_logo1.png')}>Download</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment