ASP.NET CORE 3.1 中数据注释和错误验证消息的本地化
Localization on data annotation and error validation messages in ASP.NET CORE 3.1
如何在 ASP.NET CORE 3.1
中本地化数据注释和验证错误消息
[Required(ErrorMessage = "something")]
[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; }
我使用 Microsoft 文档中资源文件的标准实现
services.AddLocalization(option => option.ResourcesPath = ProjectConstants.LanguageResourcesPath);
services.AddControllersWithViews()
.AddViewLocalization(
LanguageViewLocationExpanderFormat.Suffix,
option => option.ResourcesPath = "Resources")
.AddDataAnnotationsLocalization();
我的资源文件结构
|-资源
|---控制器
|---浏览量
|---型号
我正在重构身份页面,无法以两种语言显示标准错误消息。 Microsoft 文档中的这个示例对我不起作用。[https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-3.1#dataannotations-localization]
请有人帮助我
用于添加 DataAnnotations 本地化
InputModel
在默认身份 Register
页面中(位于 /Areas/Identity/Pages/Account/Register.cshtml.cs
),您需要将资源文件命名为
Areas.Identity.Pages.Account.RegisterModel+InputModel.en-US.resx
对于 PageModel
中的任何嵌套模型,您需要使用 +
而不是 .
如何在 ASP.NET CORE 3.1
中本地化数据注释和验证错误消息[Required(ErrorMessage = "something")]
[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; }
我使用 Microsoft 文档中资源文件的标准实现
services.AddLocalization(option => option.ResourcesPath = ProjectConstants.LanguageResourcesPath);
services.AddControllersWithViews()
.AddViewLocalization(
LanguageViewLocationExpanderFormat.Suffix,
option => option.ResourcesPath = "Resources")
.AddDataAnnotationsLocalization();
我的资源文件结构
|-资源
|---控制器
|---浏览量
|---型号
我正在重构身份页面,无法以两种语言显示标准错误消息。 Microsoft 文档中的这个示例对我不起作用。[https://docs.microsoft.com/en-us/aspnet/core/fundamentals/localization?view=aspnetcore-3.1#dataannotations-localization] 请有人帮助我
用于添加 DataAnnotations 本地化
InputModel
在默认身份 Register
页面中(位于 /Areas/Identity/Pages/Account/Register.cshtml.cs
),您需要将资源文件命名为
Areas.Identity.Pages.Account.RegisterModel+InputModel.en-US.resx
对于 PageModel
中的任何嵌套模型,您需要使用 +
而不是 .