Thymeleaf - How to compare string with request parameter in html in Thymeleaf tag “th:if”?

前端 未结 2 450
鱼传尺愫
鱼传尺愫 2021-02-01 08:36

How to compare string with request parameter in html in Thymeleaf tag \"th:if\" ? right now i am using this

2条回答
  •  囚心锁ツ
    2021-02-01 08:39

    It's not working because param.error is array of strings. You must retrieve first element of array (param.error[0]) to get first value of parameter (see documentation). Besides that you can access request parameter via Web context object method #httpServletRequest.getParameter that returns first value when parameter is multivalued (see documentation).

    1. Usage of Web context namespaces for request attributes

    2. Usage of Web context object

提交回复
热议问题