1. 程式人生 > >spring boot 對於thymeleaf配置html

spring boot 對於thymeleaf配置html

需要加入:

<!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>