回答編集履歴

1

修正

2019/11/19 14:22

投稿

rubytomato
rubytomato

スコア1752

test CHANGED
@@ -28,7 +28,13 @@
28
28
 
29
29
 
30
30
 
31
- **修正**
31
+ **修正**
32
+
33
+
34
+
35
+ imagesディレクトリをstaticディレクトリの下へ移動させてください。
36
+
37
+
32
38
 
33
39
  ```
34
40
 
@@ -43,3 +49,35 @@
43
49
  `--- /images
44
50
 
45
51
  ```
52
+
53
+
54
+
55
+ ### 2) Thymeleafのth属性の書き方
56
+
57
+
58
+
59
+ **修正前**
60
+
61
+
62
+
63
+ ```
64
+
65
+ <img src="@{/images/magnifier_animal_usagi.jpg}">
66
+
67
+ ```
68
+
69
+
70
+
71
+ **修正後**
72
+
73
+
74
+
75
+ Thymeleafで描画するには`th:src`のようにth属性として記述します。
76
+
77
+
78
+
79
+ ```
80
+
81
+ <img src="/images/magnifier_animal_usagi.jpg" th:src="@{/images/magnifier_animal_usagi.jpg}"/>
82
+
83
+ ```