Preguntas etiquetadas con thymeleaf

10
¿Cómo hacer if-else en Thymeleaf?
¿Cuál es la mejor manera de hacer un simple if- elseen Thymeleaf? Quiero lograr en Thymeleaf el mismo efecto que <c:choose> <c:when test="${potentially_complex_expression}"> <h2>Hello!</h2> </c:when> <c:otherwise> <span class="xxx">Something else</span> </c:otherwise> </c:choose> en JSTL Lo que he imaginado hasta ahora: <div th:with="condition=${potentially_complex_expression}" th:remove="tag"> <h2 th:if="${condition}">Hello!</h2> <span th:unless="${condition}" class="xxx">Something else</span> </div> No …

3
usando el atributo data- * con thymeleaf
¿Puedo establecer el atributo data- * con thymeleaf? Como entendí de la documentación de thymeleaf intenté: <div th:data-el_id="${element.getId()}"> <!-- doesn't work --> <div data-th-el_id="${element.getId()}"> <!-- doesn't work -->
125 html  thymeleaf 

20
Cómo evitar la excepción de "ruta de vista circular" con la prueba Spring MVC
Tengo el siguiente código en uno de mis controladores: @Controller @RequestMapping("/preference") public class PreferenceController { @RequestMapping(method = RequestMethod.GET, produces = "text/html") public String preference() { return "preference"; } } Simplemente estoy tratando de probarlo usando la prueba Spring MVC de la siguiente manera: @ContextConfiguration @WebAppConfiguration @RunWith(SpringJUnit4ClassRunner.class) public class PreferenceControllerTest { …

6
Configuración de una variable de JavaScript desde el modelo Spring usando Thymeleaf
Estoy usando Thymeleaf como motor de plantilla. ¿Cómo paso una variable del modelo Spring a la variable JavaScript? Lado del resorte: @RequestMapping(value = "message", method = RequestMethod.GET) public String messages(Model model) { model.addAttribute("message", "hello"); return "index"; } Lado del cliente: <script> .... var m = ${message}; // not working alert(m); …

10
Thymeleaf: cómo usar condicionales para agregar / eliminar dinámicamente una clase CSS
Al usar Thymeleaf como motor de plantilla, ¿es posible agregar / eliminar dinámicamente una clase CSS a / desde un simple divcon la th:ifcláusula? Normalmente, podría usar la cláusula condicional de la siguiente manera: <a href="lorem-ipsum.html" th:if="${condition}">Lorem Ipsum</a> Crearemos un enlace a la página de lorem ipsum , pero solo …
99 java  html  css  spring  thymeleaf 
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.