回答編集履歴
1
ダブった行の削除
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
極力シンプルな画像一覧&画像アップロードサンプルを提示します。参考に。
|
2
2
|
|
3
|
-
https://go.dev/play/p/
|
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
|
}
|