summaryrefslogtreecommitdiff
path: root/test2.html
blob: d68444dfe8c04b3ea8cf58837497f6ac5af50c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<html>
<head>
</head>
<body>
  <label for="file_input">Select Files:</label>
  <input id="fileinput" type="file">
<script language="javascript">
  // 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://localhost:8080/oups', { // Your POST endpoint
    method: 'PUT',
//    headers: {
//      "Content-Type": ""
//    },
    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);
</script>
</body>
</html>