1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

BLob を使ってブラウザからバイナリデータをダウンロードするときの罠 (javascript)

Last updated at Posted at 2022-06-17

ダウンロードすると、データがすべて文字列化テキスト化)されてしまう現象に悩まされたのでメモ。

問題

hoge.js
data = [0,1,2,3,4];
const blob = new Blob(data, { "type" : "application/octet-stream" });
const downloadURL = window.URL.createObjectURL(blob);

こうすると、ダウンロードしたデータは下記のようにテキストデータになってしまうようです。

hoge.bin
01234

解決方法

hoge.js
data = [0,1,2,3,4];
const blob = new Blob([data], { "type" : "application/octet-stream" });
const downloadURL = window.URL.createObjectURL(blob);

これで、ダウンロードしたデータはバイナリになってくれます。

data を [] で array にすると、バイナリでダウンロードされるようです。data がもともと array なので、配列化しなくてもいいと思ってたら、そういうことではなかったようです。

何でやー

1
0
0

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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?