为什么胸腺tag标签:文本不打印?

发布于 2025-01-19 08:31:50 字数 650 浏览 0 评论 0原文

在MemberPage.html中,我有一个标签th:text =“ $ {username}”,但是当我在服务器上运行页面时,它不会显示该值,为什么?

会员page.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>HOME</title>
</head>
<body>
    <div th:text="${username}"></div>

控制器

String username = "Username";
HttpSession session = request.getSession();
session.setAttribute("username",username);
RequestDispatcher rd = request.getRequestDispatcher("MemberPage.html");
rd.forward(request, response);

in MemberPage.html i have a tag th:text="${username}", but it doesn't display the value when i run the page on the server, why?

MemberPage.html

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>HOME</title>
</head>
<body>
    <div th:text="${username}"></div>

The Controller

String username = "Username";
HttpSession session = request.getSession();
session.setAttribute("username",username);
RequestDispatcher rd = request.getRequestDispatcher("MemberPage.html");
rd.forward(request, response);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

煮茶煮酒煮时光 2025-01-26 08:31:50

请更改您的代码
从:

<div th:text="${username}"></div>

到:

<div th:text="${session.username}"></div>

Please change your code
from:

<div th:text="${username}"></div>

to:

<div th:text="${session.username}"></div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文