inside a value ="" in an input?-6ren"> inside a value ="" in an input?-有谁知道我该如何放置这条线 在value=""内 如果我像下面所示的代码一样保留它,则用户名将显示在输入字段下方,而不是显示在 (obv) 内。 非常感谢您的帮助! -6ren">
gpt4 book ai didi

java - 如何放置<安全:authentication property ="principal.username"/> inside a value ="" in an input?

转载 作者:行者123 更新时间:2023-12-02 01:07:38 24 4
gpt4 key购买 nike

有谁知道我该如何放置这条线

<security:authentication property="principal.username"/>

value=""

<form:input path="contactName" cssClass="form-control"
placeholder="Enter your Contact Name please." value=""/>

如果我像下面所示的代码一样保留它,则用户名将显示在输入字段下方,而不是显示在 (obv) 内。

 <form:input path="contactName" cssClass="form-control"
placeholder="Enter your Contact Name please." value=""/>
<security:authentication property="principal.username"/>

非常感谢您的帮助!

关于尼科

最佳答案

你使用百里香吗?

如果是的话,你可以这样做。

添加pom.xml依赖:

    <!-- https://mvnrepository.com/artifact/org.thymeleaf.extras/thymeleaf-extras-springsecurity5 -->
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
<version>3.0.4.RELEASE</version>
</dependency>

然后:

<!-->it is necessary<-->
<html xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/extras/spring-security">

<input placeholder="XXX" th:value="${#authentication.getName()}" />

它可以获取用户名,但即使您没有登录,它也会返回anonymousUser。别担心,这是一个小问题,你可以使用thymeleaf的判断表达式。

您可以在以下位置找到更详细的文档: https://www.thymeleaf.org/doc/articles/springsecurity.html

如果这不能解决您的问题,我会跟进。

关于java - 如何放置<安全:authentication property ="principal.username"/> inside a value ="" in an input?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59811414/

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