c# – 如何在Aspnet Core 2.1中设置密码选项
作者:互联网
我已经关注了SO example code和official documentation,但是我更改了我的Aspnet核心2.1项目中的密码长度没有任何变化.
我总是收到消息“密码必须至少为6,最多100个字符.”
在public void ConfigureServices(IServiceCollection服务)我试过了
services.Configure<IdentityOptions>(options =>
{
options.Password.RequiredLength = 1;
});
在各个地方,或将其添加到AddDefaultIdentity<>
services.AddDefaultIdentity<IdentityUser>(options =>
options.Password.RequiredLength = 1;
)
.AddEntityFrameworkStores<ApplicationDbContext>();
但无济于事.
我使用的是non-scaffolded version,因此我无法访问HTML或cshtml文件.
解决方法:
看起来你发现了一个支架错误的原因.在包含ASP.NET核心标识UI的Razor Pages实现的Razor类库中,注册页面有一个InputModel
类,如下所示:
public class InputModel
{
...
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "Password")]
public string Password { get; set; }
...
}
从这段代码片段可以清楚地看出,无论你将RequiredLength设置为什么,内置的ModelState验证总是需要6到100个字符的长度.
值得注意的是,这不会影响Register页面 – 我已经确认它也会影响ResetPassword,SetPassword和ChangePassword.
就解决方案而言:Chris Pratt在评论中指出,解决此问题的唯一真正方法是对受影响的页面进行支撑,并对StringLength属性进行必要的更改.
更新:你提出的issue已被关闭作为副本,解决方案是支持Pages并进行必要的更改.
标签:c,asp-net-core,asp-net-core-2-1,asp-net-core-identity 来源: https://codeday.me/bug/20190522/1152513.html