作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
inside a value ="" in an input?-6ren"> inside a value ="" in an input?-有谁知道我该如何放置这条线 在value=""内 如果我像下面所示的代码一样保留它,则用户名将显示在输入字段下方,而不是显示在 (obv) 内。 非常感谢您的帮助! -6ren">
有谁知道我该如何放置这条线
<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/
我是一名优秀的程序员,十分优秀!