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>

posted @ 2020-10-19 23:00  金木羽  阅读(207)  评论(0编辑  收藏  举报