欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring boot 对于thymeleaf配置html

程序员文章站 2022-04-23 15:44:50
...

需要加入:

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
  <head>

然后就可以使用

<input type="hidden" th:value="${error}" id="error"/>

在thymeleaf中怎么使用js获取到,后端传过来的值

<script th:inline="javascript" >
    var eqp = [[${eqp}]]
</script>

a标签中使用

<a th:href="@{|appSingle?flag=${app['appId']}|}"></a>