arrays - operator - thymeleaf tutorial español
Loop a través de una matriz en ThymeLeaf (1)
Soy nuevo en ThymeLeaf y me preguntaba si había alguna forma de recorrer una
etiqueta html, así como iterar a través de una matriz dentro de ese
etiqueta. Quiero que los elementos dentro de smokeTest terminen en diferentes párrafos.
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Getting Started: Serving Web Content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<p th:text="${smokeTests[0].name}" />
</body>
</html>
Gracias por tu ayuda
¿Has probado el siguiente código? No lo probé, porque a menudo se usa:
<body>
<p th:each="smokeTest : ${smokeTests}"
th:text="${smokeTest.name}">A Smoke Test</p>
</body>