«thymeleaf» 태그된 질문

10
Thymeleaf에서 if-else를 수행하는 방법?
간단하게 할 수있는 가장 좋은 방법은 무엇입니까 if- elseThymeleaf의는? 나는 Thymeleaf에서와 동일한 효과를 달성하고 싶습니다 <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> JSTL에서. 내가 지금까지 생각한 것 : <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> potentially_complex_expression두 번 평가하고 싶지 않습니다 . 그래서 로컬 …

3
thymeleaf와 함께 data- * 속성 사용
thymeleaf로 data- * 속성을 설정할 수 있습니까? thymeleaf 문서에서 이해했듯이 시도했습니다. <div th:data-el_id="${element.getId()}"> <!-- doesn't work --> <div data-th-el_id="${element.getId()}"> <!-- doesn't work -->
125 html  thymeleaf 

20
Spring MVC 테스트에서“Circular view path”예외를 피하는 방법
내 컨트롤러 중 하나에 다음 코드가 있습니다. @Controller @RequestMapping("/preference") public class PreferenceController { @RequestMapping(method = RequestMethod.GET, produces = "text/html") public String preference() { return "preference"; } } 다음과 같이 Spring MVC 테스트 를 사용하여 테스트하려고 합니다. @ContextConfiguration @WebAppConfiguration @RunWith(SpringJUnit4ClassRunner.class) public class PreferenceControllerTest { @Autowired private WebApplicationContext ctx; private MockMvc mockMvc; …

6
Thymeleaf를 사용하여 Spring 모델에서 JavaScript 변수 설정
Thymeleaf를 템플릿 엔진으로 사용하고 있습니다. Spring 모델에서 JavaScript 변수로 변수를 전달하는 방법은 무엇입니까? 스프링 측 : @RequestMapping(value = "message", method = RequestMethod.GET) public String messages(Model model) { model.addAttribute("message", "hello"); return "index"; } 고객 입장에서: <script> .... var m = ${message}; // not working alert(m); ... </script>

10
Thymeleaf : 조건문을 사용하여 CSS 클래스를 동적으로 추가 / 제거하는 방법
사용하여 Thymeleaf을 템플릿 엔진으로, 그것은 간단한에서 /에 동적으로 / CSS 클래스를 제거를 추가 할 수 있습니다 div와 th:if절? 일반적으로 다음과 같이 조건절을 사용할 수 있습니다. <a href="lorem-ipsum.html" th:if="${condition}">Lorem Ipsum</a> lorem ipsum 페이지에 대한 링크를 생성 하지만 조건 절이 참인 경우에만 해당됩니다. 다른 것을 찾고 있습니다. 블록이 항상 표시되기를 원하지만 상황에 …
99 java  html  css  spring  thymeleaf 

4
Thymeleaf : Concatenation-식으로 구문 분석 할 수 없습니다.
내 템플릿에서 여러 값을 연결하려고 할 때 문제가 있습니다. 여기의 Thymeleaf에 따르면 나는 단순히 + 그들을 함께 할 수 있어야합니다 ... 4.6 연결 텍스트 텍스트가 리터럴이든 변수 또는 메시지 표현식 평가의 결과이든 상관없이 + 연산자를 사용하여 쉽게 연결할 수 있습니다. th:text="'The name of the user is ' + ${user.name}" 내가 …
83 java  html  thymeleaf 

10
값이 null 일 때 Thymeleaf 사용
내 데이터베이스에 아직 입력하지 않은 경우 null이 될 수있는 값이 있습니다. 그러나 HTML에서 Thymeleaf를 사용하면 null 값을 구문 분석 할 때 오류가 발생합니다. 이것을 처리 할 방법이 있습니까?
80 html  null  thymeleaf 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.