美文网首页
使用Thymeleaf[[${data}]]内联标签的注意事项

使用Thymeleaf[[${data}]]内联标签的注意事项

作者: SmallFleaGood | 来源:发表于2018-10-22 22:55 被阅读0次

    页面使用:

    记得在使用内联标签的标签内加上 th:inline="text"

    如:

    <h2 th:inline="text">timestamp:[[${timestamp}]]</h2>

    或者在父类以及祖先类上加上

    th:inline="text",切记加上,这样才能激活内联标签

    脚本使用:

    <scriptth:inline="javascript">

    varmsg = '时间, ' + [[${timestamp}]];

    加上th:inline="javascript"在js代码中才能使用[[$]]

    相关文章

      网友评论

          本文标题:使用Thymeleaf[[${data}]]内联标签的注意事项

          本文链接:https://www.haomeiwen.com/subject/wcinzftx.html