- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有我这样的托管bean:
@ManagedBean
@SessionScoped
public class utilisateur implements Serializable {
private String login ="yous" ;
private String password ="yous";
...
...
}
<h:outputText value="login: " />
<p:inputText value="#{utilisateur.login}" />
<h:outputText value="password: " />
<p:password value="#{utilisateur.password}" />
****
中的
p:password
(yous)一样显示密码,但密码显示为空。
最佳答案
出于安全原因,这是默认行为。如果需要在提交或预设模型时显示模型中的密码,则需要将redisplay
属性显式设置为true
。
<p:password value="#{utilisateur.password}" redisplay="true" />
<p:password>
VDL documentation,它是最后一个属性的前一个。
redisplay
Boolean flag indicating whether or not a previously entered password should be rendered in form. Default is false.
关于jsf - p :password doesn't redisplay prefilled model value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10852520/
我已经创建了一个输入表单。当用户提交值但未通过验证时,如何从用户那里获取原始值以显示出来?我可以正确地看到验证错误消息指出“字段是必需的”。它转发回输入表单并显示验证错误,但它不保存用户输入的值。 模
我有我这样的托管bean: @ManagedBean @SessionScoped public class utilisateur implements Serializable { pri
在 Windows 上使用 Python 3.7.3 (Anaconda),点击选项卡会导致以下回溯: Readline internal error Traceback (most recent c
更新:现在再次更新。我认为我之前的分析是错误的,因为我现在已经能够为此创建一个示例。它似乎与复合组件和 insertChildren 标签有关。 这是我的小脸:
使用 Active Storage 上传文件时,当文件上传完成并且表单重新显示时,例如当表单验证由于某种原因失败时,文件就会消失。 有没有办法在表单重新显示之间缓存或保留它? Shrine has a
我是一名优秀的程序员,十分优秀!