質問編集履歴

1

ああああああああああああああああああ

2022/05/17 11:10

投稿

wassan_nikoniko
wassan_nikoniko

スコア9

test CHANGED
@@ -1 +1 @@
1
- 拡張for文で取得した値を改行して出力したい
1
+ ああああああああああああああああああ
test CHANGED
@@ -1,143 +1 @@
1
- ### 前提・実現したいこと
2
-
3
- 拡張forで取得した値を改行して出力をしたいです。
4
-
5
- 今のままだと取得した分だけ横並びに表示をさせてしまうので
6
-
7
- 繰り返しの最後の部分で改行をしようと<br>を使用しましたがうまくいきませんでした。
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
-
16
-
17
- ### 該当のソースコード
18
-
19
-
20
-
21
- ```jsp
22
-
23
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
24
-
25
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
26
-
27
- <%@ page import="enums.ProductGenre" %>
28
-
29
- <%@ page import="beans.Product"%>
30
-
31
-
32
-
33
- <!DOCTYPE html>
34
-
35
- <html lang="ja" dir="ltr">
36
-
37
- <head>
38
-
39
- <meta charset="utf-8">
1
+ ああああああああああああああああああああああああああああああああああああ
40
-
41
- <link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/css/style.css">
42
-
43
- <title>JSPの基本</title>
44
-
45
- </head>
46
-
47
- <body>
48
-
49
-
50
-
51
- <form action="/pda.k.oonuki/ProductSubmit" method="post">
52
-
53
- <input class="input1" type="image" name="検索" value="検索" src="image/検索1.png">
54
-
55
- <input type="image" name="登録" value="登録" src="image/検索1.png"><br>
56
-
57
- </form>
58
-
59
-
60
-
61
- <table border="1">
62
-
63
- <tr>
64
-
65
- <th>商品ID</th>
66
-
67
- <th>画像</th>
68
-
69
- <th>メーカー名</th>
70
-
71
- <th>商品名</th>
72
-
73
- <th>ジャンル</th>
74
-
75
- <th>在庫数</th>
76
-
77
- <th>販売個数</th>
78
-
79
- <th>価格</th>
80
-
81
- <th>更新</th>
82
-
83
- </tr>
84
-
85
- <tr>
86
-
87
- <c:forEach var="productdata" items="${productlist}">
88
-
89
- <td>${productdata.productId}</td>
90
-
91
- <td><img class="watch" src="image/Aandyou_SW_E07_一覧用.png"></td>
92
-
93
- <td>${productdata.productMaker}</td>
94
-
95
- <td>${productdata.productName}</td>
96
-
97
- <td>
98
-
99
- <c:forEach var="genre" items="${ProductGenre.values()}">
100
-
101
- <c:if test="${productdata.productGenreCode == genre.genrecode }">${genre.genrename}</c:if>
102
-
103
- </c:forEach>
104
-
105
- </td>
106
-
107
- <td>${productdata.productStock}</td>
108
-
109
- <td>${productdata.productSales}</td>
110
-
111
- <td>${productdata.productPrice}</td>
112
-
113
- <td>
114
-
115
- <form action="/pda.k.oonuki/Productdetail" method="post">
116
-
117
- <input name="productID" type="hidden" value="${productdata.productId}">
118
-
119
- <input type="submit" value="更新">
120
-
121
- </form>
122
-
123
- </td>
124
-
125
- //ここで改行してまた、forで取得した値を出力していきたい。
126
-
127
- </c:forEach>
128
-
129
- </tr>
130
-
131
- </table>
132
-
133
- </body>
134
-
135
- </html>
136
-
137
- ```
138
-
139
-
140
-
141
- table 要素 改行 などで調べたのですが、一向に出てくる気配がなかったため質問させていただきました。
142
-
143
- ご教授いただければ幸いです。