重新学习Thymeleaf

Thymeleaf 百里香叶子

主要知识点为两点:

  th: 标签="表达式语法  非表达式,如加减运算"            例如: th:text="${student.name}"

基本有五种表达式语法 ${}  *{}  #{}  @{}  ~{}

在js代码里边获取传来的对象 :内联文本  https://www.cnblogs.com/suncj/p/4031486.html

<script th:inline="javascript">
        var mp = [[${contract.miniPrograms}]];
        console.log(mp)
    </script>
原文地址:https://www.cnblogs.com/Lemonades/p/12950914.html