Thymeleaf特点(8)- 属性优先级
本文最后更新于:2 年前
这次我们来学习属性优先级。
当Thymeleaf在同一标签中遇到了至少两个属性时,需要按顺序执行它们:
1 |
|
th:each 属性需要在 th:text 属性之前执行,否则会出错。
Thymeleaf 通过建立数字优先级机制来保证我们得到想要的结果:(数字越小优先级越高)
Order | Feature | Attributes |
---|---|---|
1 | Fragment inclusion | th:insert/th:replace |
2 | Fragment iteration | th:each |
3 | Conditional evaluation | th:if/th:unless/th:switch/th:case |
4 | Local variable definitiont | th:object/th:with |
5 | General attribute modification | th:attr/th:attrprepend/th:attrappend |
6 | Specific attribute modification | th:value/th:href/th:src/... |
7 | Text (tag body modification) | th:text/th:utext |
8 | Fragment specification | th:fragment |
9 | Fragment removal | th:remove |
1 |
|
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!