Jsでアップローダーを作成したいと思います。 javascriptを使用してファイルをアップロードする方法を誰かが手伝ってくれる?
次のようなhtml5ファイルタイプを使用できます。
<input type="file" id="myFile">
あなたのファイルは価値があります:
var myUploadedFile = document.getElementById("myFile").files[0];
詳細については、 https://www.w3schools.com/jsref/dom_obj_fileupload.asp を参照してください
ここの例を参照してください: https://www.script-tutorials.com/pure-html5-file-upload/
XMLHttpRequest
およびFormData
を使用してファイルをアップロードできます。次の例は、新しく選択したファイルをアップロードする方法を示しています。
<input type="file" name="my_files[]" multiple/>
<script>
const input = document.querySelector('input[type="file"]');
input.addEventListener('change', (e) => {
const fd = new FormData();
// add all selected files
e.target.files.forEach((file) => {
fd.append(e.target.name, file, file.name);
});
// create the request
const xhr = new XMLHttpRequest();
xhr.onload = () => {
if (xhr.status >= 200 && xhr.status < 300) {
// we done!
}
};
// path to server would be where you'd normally post the form to
xhr.open('POST', '/path/to/server', true);
xhr.send(fd);
});
</script>
免責事項、私は FilePond の作成者であり、これもアップロードの方法とよく似ています。