Thymeleaf中什么是内联表达式,对layui中clos列的影响

    相当于 th:text ==> [[ .. ]]

  1.  <p>Hello, [[${session.user.name}]]!</p>
  2.  <p>Hello, <span th:text="${session.user.name}">Sebastian</span>!</p>

使用   th:inline="none"    禁用内联


<p th:inline="none">Hello, [[${session.user.name}]]!</p>

原文地址:https://www.cnblogs.com/hello-top/p/13843805.html