1. ホーム
  2. ジャバスクリプト

[解決済み】JS fetch APIでファイルをアップロードする方法は?

2022-04-01 14:02:47

質問

まだ、頭の中が整理できていません。

ファイル入力で、ユーザーにファイル(複数でも可)を選択させることができるのですが。

<form>
  <div>
    <label>Select file to upload</label>
    <input type="file">
  </div>
  <button type="submit">Convert</button>
</form>

をキャッチすることができますし submit イベントを使用して <fill in your event handler here> . しかし、そうすると、どのようにすれば fetch ?

fetch('/files', {
  method: 'post',
  // what goes here? What is the "body" for this? content-type header?
}).then(/* whatever */);

解決方法は?

これはコメント付きの基本的な例です。その upload という関数があります。

// Select your input type file and store it in a variable
const input = document.getElementById('fileinput');

// This will upload the file after having read it
const upload = (file) => {
  fetch('http://www.example.net', { // Your POST endpoint
    method: 'POST',
    headers: {
      // Content-Type may need to be completely **omitted**
      // or you may need something
      "Content-Type": "You will perhaps need to define a content-type here"
    },
    body: file // This is your file object
  }).then(
    response => response.json() // if the response is a JSON object
  ).then(
    success => console.log(success) // Handle the success response object
  ).catch(
    error => console.log(error) // Handle the error response object
  );
};

// Event handler executed when a file is selected
const onSelectFile = () => upload(input.files[0]);

// Add a listener on your input
// It will be triggered when a file will be selected
input.addEventListener('change', onSelectFile, false);