thymeleaf内敛用法

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h2>出错啦!</h2>

<p th:inline="text">
    错误原因:[[${errorMessage}]]
</p>

<p th:text="${errorMessage}"></p>

<script th:inline="javascript">
    var message = [[${errorMessage}]];
    console.log(message);
    var data = [[${data}]];
    console.log(data);
</script>
</body>
</html>

猜你喜欢

转载自blog.csdn.net/lizc_lizc/article/details/81270572
今日推荐