-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (55 loc) · 1.89 KB
/
index.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<title>이미지 업로드 예제</title>
</head>
<body>
<h2>이미지 업로드</h2>
<form id="uploadForm" enctype="multipart/form-data">
<input type="file" id="imageInput" accept="image/*" onchange="setThumbnail(event);">
<button type="button" onclick="uploadImage()">업로드</button>
</form>
<div id="image_container"></div>
<script>
// 이미지 업로드
function uploadImage() {
let input = document.getElementById('imageInput');
let file = input.files[0];
let nickname = sessionStorage.getItem('nickname');
if (file) {
let formData = new FormData();
formData.append('file', file);
formData.append('nickname', nickname)
axios.post('http://localhost:5000/image', formData, {
headers: {
'Content-Type': 'multipart/form-data',
},
})
.then(function(response) {
// 업로드 성공 시 실행할 코드
console.log('이미지 업로드 성공');
})
.catch(function(error) {
// 업로드 실패 시 실행할 코드
console.error('이미지 업로드 실패', error);
});
} else {
console.error('이미지를 선택해주세요.');
}
}
// 이미지 업로드 미리보기
function setThumbnail(event) {
let reader = new FileReader();
reader.onload = function(event) {
let img = document.createElement("img");
img.setAttribute("src", event.target.result);
document.querySelector("div#image_container").appendChild(img);
};
reader.readAsDataURL(event.target.files[0]);
}
</script>
</body>
</html>