web-dev-qa-db-ja.com

JSフェッチAPIを使用してファイルをアップロードする方法

私はまだ頭を包み込もうとしています。

ファイルを入力してファイルを選択するようにすることができます。

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

そして<fill in your event handler here>を使ってsubmitイベントを捕らえることができます。しかし、一度やったら、どうやってfetchを使ってファイルを送るのですか?

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

これはコメント付きの基本的な例です。 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);
90
Damien

私はこうやった:

var input = document.querySelector('input[type="file"]')

var data = new FormData()
data.append('file', input.files[0])
data.append('user', 'hubot')

fetch('/avatars', {
  method: 'POST',
  body: data
})
166
Integ

Fetch APIを使用してファイルを送信するための重要な注意事項

Fetchリクエストではcontent-typeヘッダを省略する必要があります。ブラウザは自動的にフォーム境界を含むContent typeヘッダを追加します。

Content-Type: multipart/form-data; boundary=—-WebKitFormBoundaryfgtsKTYLsT7PNUVD

フォーム境界はフォームデータの区切り文字です

52
madhu131313

倍数ファイルが必要な場合は、これを使用できます。

var input = document.querySelector('input[type="file"]')

var data = new FormData()
for (const file of input.files) {
  data.append('files',file,file.name)
}

fetch('/avatars', {
  method: 'POST',
  body: data
})
24
Alex Montoya

単一のファイルを送信するには、fetch()イニシャライザの.filesの値として、Filename __のbody:配列から直接 inputNAME _ オブジェクトを使用するだけです。

const myInput = document.getElementById('my-input');

// Later, perhaps in a form 'submit' handler or the input's 'change' handler:
fetch('https://example.com/some_endpoint', {
  method: 'POST',
  body: myInput.files[0],
});

Filename__は BlobNAME _ から継承され、Blobname__はFetch Standardで定義されている BodyInitNAME _ のいずれかの型であるため、これは機能します。

16
Mark Amery

複数ファイルの入力要素に対するAlex Montoyaのアプローチからの脱却

const inputFiles = document.querySelectorAll('input[type="file"]');
const formData = new FormData();

for (const file of inputFiles) {
    formData.append(file.name, file.files[0]);
}

fetch(url, {
    method: 'POST',
    body: formData })
2
Jerald Macachor

私にとっての問題は、フォームデータを生成するためにresponse.blob()を使用していたことです。どうやらあなたは少なくともネイティブネイティブを使ってそれを行うことはできませんので、私は使用してしまった

data.append('fileData', {
  uri : pickerResponse.uri,
  type: pickerResponse.type,
  name: pickerResponse.fileName
 });

Fetchはそのフォーマットを認識し、URIが指している場所にファイルを送信するようです。

1
NickJ