私はまだ頭を包み込もうとしています。
ファイルを入力してファイルを選択するようにすることができます。
<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 */);
これはコメント付きの基本的な例です。 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);
私はこうやった:
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
})
Fetch APIを使用してファイルを送信するための重要な注意事項
Fetchリクエストではcontent-type
ヘッダを省略する必要があります。ブラウザは自動的にフォーム境界を含むContent type
ヘッダを追加します。
Content-Type: multipart/form-data; boundary=—-WebKitFormBoundaryfgtsKTYLsT7PNUVD
フォーム境界はフォームデータの区切り文字です
倍数ファイルが必要な場合は、これを使用できます。
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
})
単一のファイルを送信するには、fetch()
イニシャライザの.files
の値として、File
name __のbody:
配列から直接 input
NAME _ オブジェクトを使用するだけです。
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],
});
File
name__は Blob
NAME _ から継承され、Blob
name__はFetch Standardで定義されている BodyInit
NAME _ のいずれかの型であるため、これは機能します。
複数ファイルの入力要素に対する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 })
私にとっての問題は、フォームデータを生成するためにresponse.blob()を使用していたことです。どうやらあなたは少なくともネイティブネイティブを使ってそれを行うことはできませんので、私は使用してしまった
data.append('fileData', {
uri : pickerResponse.uri,
type: pickerResponse.type,
name: pickerResponse.fileName
});
Fetchはそのフォーマットを認識し、URIが指している場所にファイルを送信するようです。