LoginSignup
15
13

More than 3 years have passed since last update.

jsでurlからファイルをダウンロード

Posted at

aタグを作って、urlを実行してあげればいいだけ

  downloadByURL(url: string) {
    const link = document.createElement('a')
    link.download = 'result.csv'
    link.href = url
    link.click()
  }
  downloadByURL('ファイルのURL')
15
13
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
13