回答編集履歴
2
回答例追記
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
追記
|
13
|
+
## 追記その1
|
14
14
|
|
15
15
|
|
16
16
|
|
@@ -43,3 +43,127 @@
|
|
43
43
|
...
|
44
44
|
|
45
45
|
```
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
## 追記その2
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
できれば上記の回答の段階を踏んだ方が自己解決力が向上するのですが、
|
54
|
+
|
55
|
+
だいぶ放置されているので回答例をあげておきます。
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
- echoインスタンスのRendererにRendererインターフェースを満たすものをあらかじめ入れておきます。
|
60
|
+
|
61
|
+
- (echo.Context).Render(...)にてRenderer.Render(...)を呼んだ結果を受け取れます。
|
62
|
+
|
63
|
+
- Renderにはテンプレート名と任意のオブジェクトが渡せます。
|
64
|
+
|
65
|
+
- テンプレートでは「{{.}}」にて上記の任意のオブジェクトを参照することができます。
|
66
|
+
|
67
|
+
- この場合、filesを渡したのでos.FileInfoのスライスが参照できます。
|
68
|
+
|
69
|
+
- 「{{range $v := .}}」にてfilesを1要素づつ取り出して「{{end}}」までの内容を繰り返します。
|
70
|
+
|
71
|
+
- 「{{$v.Name}}」という記述は(os.FileInfo).Name()にアクセスすることになります。
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
```go
|
76
|
+
|
77
|
+
import (
|
78
|
+
|
79
|
+
"github.com/labstack/echo/v4"
|
80
|
+
|
81
|
+
)
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
type Template struct {
|
86
|
+
|
87
|
+
templates *template.Template
|
88
|
+
|
89
|
+
}
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
func (t *Template) Render(w io.Writer, name string, data interface{}, c echo.Context) error {
|
94
|
+
|
95
|
+
log.Println(t.templates, name, data)
|
96
|
+
|
97
|
+
return t.templates.ExecuteTemplate(w, name, data)
|
98
|
+
|
99
|
+
}
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
func show(c echo.Context) error {
|
104
|
+
|
105
|
+
files, _ := ioutil.ReadDir("img")
|
106
|
+
|
107
|
+
return c.Render(http.StatusOK, "show.html", files)
|
108
|
+
|
109
|
+
}
|
110
|
+
|
111
|
+
```
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
```go
|
116
|
+
|
117
|
+
e := echo.New()
|
118
|
+
|
119
|
+
e.Renderer = &Template{
|
120
|
+
|
121
|
+
templates: template.Must(template.ParseGlob("templates/*.html")),
|
122
|
+
|
123
|
+
}
|
124
|
+
|
125
|
+
```
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
show.html
|
130
|
+
|
131
|
+
```html
|
132
|
+
|
133
|
+
<!DOCTYPE html>
|
134
|
+
|
135
|
+
<html>
|
136
|
+
|
137
|
+
<head>
|
138
|
+
|
139
|
+
<meta charset="utf-8" />
|
140
|
+
|
141
|
+
<title>画像をある分だけ表示する</title>
|
142
|
+
|
143
|
+
</head>
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
<body>
|
148
|
+
|
149
|
+
{{range $v := .}}
|
150
|
+
|
151
|
+
<div>
|
152
|
+
|
153
|
+
<label>{{$v.Name}}</label>
|
154
|
+
|
155
|
+
<div>
|
156
|
+
|
157
|
+
<img src="/img/{{$v.Name}}" width="20%" />
|
158
|
+
|
159
|
+
</div>
|
160
|
+
|
161
|
+
</div>
|
162
|
+
|
163
|
+
{{end}}
|
164
|
+
|
165
|
+
</body>
|
166
|
+
|
167
|
+
</html>
|
168
|
+
|
169
|
+
```
|
1
追記
test
CHANGED
@@ -7,3 +7,39 @@
|
|
7
7
|
次にその際のファイル名を「img/」をReadDirした結果に置き換えるだけなんですが、それはshow.htmlの内容が動的に変化するということになります。
|
8
8
|
|
9
9
|
動的なHTMLコンテンツを返すのにはどういう仕組みを使うのか考えてみてください。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
追記
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
そのshow.html例で表示されるようにするために、必要なハンドラが以下になります。
|
18
|
+
|
19
|
+
参考: [https://echo.labstack.com/guide/static-files/](https://echo.labstack.com/guide/static-files/)
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
e.Static("/img", "img")
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
これで`/show`の表示に「/img/sample.png」の画像表示はできましたでしょうか?
|
30
|
+
|
31
|
+
その後、show.htmlをテンプレートを使って以下のようなHTMLが出力されるように書けば良いわけです。
|
32
|
+
|
33
|
+
```html
|
34
|
+
|
35
|
+
<img src="/img/ファイル名">
|
36
|
+
|
37
|
+
<img src="/img/ファイル名">
|
38
|
+
|
39
|
+
<img src="/img/ファイル名">
|
40
|
+
|
41
|
+
<img src="/img/ファイル名">
|
42
|
+
|
43
|
+
...
|
44
|
+
|
45
|
+
```
|