回答編集履歴

1

ダブった行の削除

2022/10/23 13:11

投稿

nobonobo
nobonobo

スコア3367

test CHANGED
@@ -1,6 +1,6 @@
1
1
  極力シンプルな画像一覧&画像アップロードサンプルを提示します。参考に。
2
2
 
3
- https://go.dev/play/p/6rDZAFV6w93
3
+ https://go.dev/play/p/UzyfgLazIbk
4
4
  ```go:main.go
5
5
  package main
6
6
 
@@ -36,7 +36,6 @@
36
36
 
37
37
  func upload(w http.ResponseWriter, r *http.Request) {
38
38
  if r.Method != "POST" {
39
- http.Error(w, "method not allowed: "+r.Method, http.StatusMethodNotAllowed)
40
39
  http.Error(w, "method not allowed: "+r.Method, http.StatusMethodNotAllowed)
41
40
  return
42
41
  }