LoginSignup
1
0

More than 1 year has passed since last update.

ファイル関連をかく

Last updated at Posted at 2022-02-27
  • ファイルを扱うときのみenctypeをつける
  • accept="video/*"で取り込みデータを限定できる。この場合は動画。
  • fileapiというJSのライブラリが存在し、フロント側で画像やファイルの生データを取得することができるみたい
   <form action="" method="post" enctype="multipart/form-data">
        <input type="file" accept="video/*">
    </form>

※ファイル選択とセレクトボックスはonClickではなくonChangeで選択したバリューが変更された時にイベントが発火するようにしたほうがいい

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