- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我有一个带有 MVC 的 Asp.Net Core 应用程序。我正在提交表格,表格上有日期。
表单(大致)如下所示:
@model EditCustomerViewModel
<form asp-action="Edit">
<input asp-for="ServiceStartDate" class="form-control" type="date" />
<input type="submit" value="Update" class="btn btn-success" />
</form>
Controller Action 是:
[HttpPost]
public async Task<IActionResult> Edit(EditCustomerViewModel viewModel)
{
// do stuff
return RedirectToAction("Index");
}
View 模型是:
public class EditCustomerViewModel
{
public Guid Id { get; set; }
[DataType(DataType.Date)]
public DateTime ServiceStartDate { get; set; }
[DataType(DataType.Date)]
public DateTime? ServiceEndDate { get; set; }
// etc.
}
我在英国,所以日期不是美国格式:dd/MM/YYYY
。所以默认情况下我提交 6/22/2017
。
在调试期间在 Controller 中查看提交的 View 模型时,如果以英国格式提交,日期为空,但如果使用美国格式则没有问题。即 6/22/2017
给我 null
,但是 22/6/2017
绑定(bind)到正确的日期。
我尝试将它添加到 Startup.cs
但没有任何区别:
var supportedCultures = new[] { new CultureInfo("en-GB") };
app.UseRequestLocalization(new RequestLocalizationOptions
{
DefaultRequestCulture = new RequestCulture("en-GB"),
SupportedCultures = supportedCultures,
SupportedUICultures = supportedCultures
});
CultureInfo.DefaultThreadCurrentCulture = new CultureInfo("en-GB");
CultureInfo.DefaultThreadCurrentUICulture = new CultureInfo("en-GB");
CultureInfo.CurrentCulture = new CultureInfo("en-GB");
CultureInfo.CurrentUICulture = new CultureInfo("en-GB");
我检查了 HTTP header 并且发布了正确的 header :
Accept-Language: en-GB,en
我做错了什么?我如何告诉 MVC 核心 Binder 以英国格式绑定(bind)日期?
附注我在 VS2017 上使用 *.csproj 项目文件,目标框架 .NetCoreApp 1.1
最佳答案
一些事情。我不确定您是否可以像那样将新的设置对象推送到中间件中(您可能可以),但大多数时候我都看到它在 ConfigureServices 方法中使用,如下所示:
public void ConfigureServices(IServiceCollection services)
{
services.Configure<RequestLocalizationOptions>(options =>
{
options.DefaultRequestCulture = new Microsoft.AspNetCore.Localization.RequestCulture("en-NZ");
options.SupportedCultures = new List<CultureInfo> { new CultureInfo("en-US"), new CultureInfo("en-NZ") };
});
services.AddMvc();
}
其次。中间件的顺序非常重要。确保您对 UseRequestLocalization 的调用发生在 UseMvc 之前。事实上,除非有特定原因,否则它可能应该是您管道中的第一件事。
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
{
loggerFactory.AddConsole(Configuration.GetSection("Logging"));
loggerFactory.AddDebug();
app.UseRequestLocalization();
app.UseMvc();
}
最后,您能否尝试从管道中删除所有提供程序(其中一个是 cookie 提供程序。我不明白为什么您会有这个 cookie,但让我们试试吧)。
在您的配置方法中,在 RequestCultureProviders 列表中调用 clear。这应该确保没有其他东西可以设置文化。
public void ConfigureServices(IServiceCollection services)
{
services.Configure<RequestLocalizationOptions>(options =>
{
options.DefaultRequestCulture = new Microsoft.AspNetCore.Localization.RequestCulture("en-GB");
options.SupportedCultures = new List<CultureInfo> { new CultureInfo("en-GB") };
options.RequestCultureProviders.Clear();
});
services.AddMvc();
}
更多信息:http://dotnetcoretutorials.com/2017/06/22/request-culture-asp-net-core/
关于c# - 如何在 Asp.Net Core 中设置日期绑定(bind)的文化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44688311/
我是一名优秀的程序员,十分优秀!