回答編集履歴

2

ソースコードの追加

2020/04/26 08:56

投稿

marny12345
marny12345

スコア17

test CHANGED
@@ -1 +1,49 @@
1
1
  ginをつかってソースコードを全体的に変更しました。router.Staticを使って静的ファイルを通しました
2
+
3
+
4
+
5
+ ```go
6
+
7
+ package main
8
+
9
+
10
+
11
+ import (
12
+
13
+ "net/http"
14
+
15
+
16
+
17
+ "github.com/gin-gonic/gin"
18
+
19
+ )
20
+
21
+
22
+
23
+ func main() {
24
+
25
+ router := gin.Default()
26
+
27
+ router.LoadHTMLGlob("templates/*.html")
28
+
29
+ router.Static("assets", "./assets")
30
+
31
+
32
+
33
+ router.GET("/", func(ctx *gin.Context) {
34
+
35
+ ctx.HTML(http.StatusOK, "index.html", gin.H{})
36
+
37
+ })
38
+
39
+ dbInit()
40
+
41
+ router.Run(":8080")
42
+
43
+ }
44
+
45
+
46
+
47
+ ```
48
+
49
+ assetsにpngなりcssを入れて、html側で、localhost:8080/assets/~~.pngと指定します

1

具体的に文章を変更

2020/04/26 08:56

投稿

marny12345
marny12345

スコア17

test CHANGED
@@ -1 +1 @@
1
- 自己解決しました。すみせん
1
+ ginをつかってソースコードを全体的に変更しました。router.Staticを使って静的ファイルを通しした