我正在尝试创建一个简单列表,该列表从List集合中返回控制器的结果。 以前,我逐一列出列表中的每个结果,但是我知道根据DRY原理,这是一种不好的做法。这就是为什么我要更改它。 我不是百里香的朋友。
我在乎:
直到列表不为空,我才像以前一样创建带有结果的表。只是这次是循环形式。
然后可以选择一个表,然后将其保存在存储库中,该怎么办?在每个表格下使用提交?
请帮助。 谢谢
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
<title>Bootstrap Example</title>
<html xmlns:th="http://www.thymeleaf.org">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" type="text/css"
href="css/font.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="js/chart.js"></script>
</head>
<body>
<div class="container">
<h2>Cheapest Flight</h2>
<div class="list-group">
<a href="#" class="list-group-item ">
<b><img th:src="@{'http://pics.avs.io/400/400/' + ${AirlineIataFirst} + '.png'}"></b>
Bad code /////......
<c><p th:text="'Airline: ' + ${AirlineFirst}"/></c>
<d><p th:text="'Price: ' + ${PriceFirst}+ ${Currency}"/></d>
<e><p th:text="'Departure: ' + ${DepartureFirst} "/></e>
<f><p th:text="'Return: ' + ${ReturnFirst} "/></f>
</a>
我正在尝试做的事情:
<a href="#" class="list-group-item" th:if="${flight != null}" >
<b><img th:src="@{'http://pics.avs.io/400/400/' + ${AirlineIataFourth} + '.png'}"></b>
<li th:each="flights : ${flight}" th:text="${flight}"></li>
<li th:each="prices : ${price}" th:text="${price}"></li>
<c><p th:text="'Airline: ' + ${flight}"/></c>
<d><p th:text="'Price: ' + ${price}+ ${Currency}"/></d>
<e><p th:text="'Departure: ' + ${DepartureFourth} "/></e>
<f><p th:text="'Return: ' + ${ReturnFourth} "/></f>
控制器:
model.addAttribute("Currency", flightDTO.getCurrency());
model.addAttribute("flight", cheapFlyService.flightList(output));
model.addAttribute("number", cheapFlyService.flightNumberList(output));
model.addAttribute("return", cheapFlyService.returnAtList(output));
model.addAttribute("departure", cheapFlyService.departureAtList(output));
model.addAttribute("price", cheapFlyService.priceList(output));
答案 0 :(得分:2)
在第二种情况下,它似乎不是有效的HTML标签。您的<a>
从未关闭。另外,您可能应该避免使用<b>
之类的东西,因为它非常令人困惑(这是不推荐使用的粗体显示方式)。删除所有这些类型的标签,因为它们不是有效的HTML或只是令人困惑。
另外,尽管它可以工作,但是th:each
上的命名是向后的。您应该通过多个航班,并且仅引用一个航班:
控制器:
model.addAttribute("currency", flightDTO.getCurrency());
model.addAttribute("flights", cheapFlyService.flightList(output));
model.addAttribute("numbers", cheapFlyService.flightNumberList(output));
model.addAttribute("returns", cheapFlyService.returnAtList(output));
model.addAttribute("departures", cheapFlyService.departureAtList(output));
model.addAttribute("prices", cheapFlyService.priceList(output));
HTML:
<th:block th:each="flight : ${flights}">
<span th:text=${flight.number}" th:remove="tag">[Flight Number]</span> <!-- or whatever property is that the Flight class may have. Note the scoping. -->
</th:block>
但是主要的反馈意见是,完整的HTML将取决于您对数据进行建模的方式。例如,如果广告投放具有名为routes
的属性,则可以在Thymeleaf中使用内部循环在routes
上进行迭代。否则,您将向模型添加单独的列表,并且只需在每个模型上调用toString
方法:
<th:block th:each="departure : ${departures}">
<span th:text=${departure}" th:remove="tag">[This is calling toString() on the objects in the list]</span>
</th:block>
常规调试技巧:首先从可行的东西开始,逐渐添加。如果某个东西坏了,而您迷路了,请拿走一切,直到一切正常,然后逐渐重新添加,直到找到罪魁祸首。