gpt4 book ai didi

.net - 输入密码 Blazor 表单

转载 作者:行者123 更新时间:2023-12-03 15:03:35 32 4
gpt4 key购买 nike

我正在 Blazor 中添加一个表单,我正在按照此处指定的说明进行操作

https://docs.microsoft.com/en-us/aspnet/core/blazor/forms-validation?view=aspnetcore-3.0

是否可以添加带有密码掩码的输入。

我尝试添加做类似的事情

public class LoginModel
{
[Required]
public string Username { get; set; }

[Required]
[DataType(DataType.Password)]
public string Password { get; set; }
}

但这没有用。有没有办法在输入时隐藏密码?

最佳答案

您可以使用 InputText组件与 type=password :

<EditForm Model="@model">
<DataAnnotationsValidator />
<ValidationSummary />
<InputText type="password" placeholder="Password" @bind-Value="@model.Password" />
</EditForm>

@code {
class Login
{
[Required]
public string Password { get; set; }
}

private Login model = new Login();
}
InputText支持所有 <input />属性

关于.net - 输入密码 Blazor 表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58542527/

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