gpt4 book ai didi

html - Thymeleaf - 如何在 Thymeleaf 标签 "th:if"中将字符串与 html 中的请求参数进行比较?

转载 作者:太空狗 更新时间:2023-10-29 13:05:08 24 4
gpt4 key购买 nike

如何在 Thymeleaf 标签“th:if”中比较字符串与 html 中的请求参数?现在我正在使用这个

<div class="error" th:if="${param.error == 'badCredentialsException'}" th:with="errorMsg=#{login.badCredentials}">                      
<p class="errorMsg"><span th:text="${errorMsg}"></span></p>
</div>

但不幸的是,它不起作用。

最佳答案

它不起作用,因为 param.error 是字符串数组。您必须检索数组的第一个元素 (param.error[0]) 以获得参数的第一个值(请参阅 documentation )。除此之外,您还可以通过 Web 上下文对象方法访问请求参数 #httpServletRequest.getParameter,该方法在参数为多值时返回第一个值(参见 documentation )。

  1. 请求属性的 Web 上下文命名空间的使用

    <div class="error" th:if="${param.error[0] == 'badCredentialsException'}" th:with="errorMsg=#{login.badCredentials}">                      
    <p class="errorMsg"><span th:text="${errorMsg}"></span></p>
    </div>
  2. Web上下文对象的使用

    <div class="error" th:if="${#httpServletRequest.getParameter('error') == 'badCredentialsException'}" th:with="errorMsg=#{login.badCredentials}">                      
    <p class="errorMsg"><span th:text="${errorMsg}"></span></p>
    </div>

关于html - Thymeleaf - 如何在 Thymeleaf 标签 "th:if"中将字符串与 html 中的请求参数进行比较?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23243277/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com