gpt4 book ai didi

spring-mvc - 动态页面标题 Thymeleaf Spring MVC

转载 作者:行者123 更新时间:2023-12-01 10:35:00 24 4
gpt4 key购买 nike

我在我的项目中使用 Thymeleaf 进行布局,但无法动态获取页面标题。

Layout.jsp

<head th:fragment="headerfragment">
<title th:text="@{page-title}"></title>
<!-- Bootstrap Core CSS -->
<link th:href="@{/resources/css/bootstrap.min.css}" rel="stylesheet"
type="text/css" />
</head>

Page.jsp
<head th:include="layout :: headerfragment"></head>

当呈现最后一页时,我看到标题为 页面标题不是实际的文字

在我的 Controller 中,我设置了 page-title 属性
modelMap.addAttribute("page-title", "Home");

我可能做得不对,因为我是 thymeleaf 的新手。请帮我找出解决方案。

最佳答案

正确的语法是 ${page-title}所以在你的例子中它应该改为 <title th:text="${page-title}"></title>

关于spring-mvc - 动态页面标题 Thymeleaf Spring MVC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37236098/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com