gpt4 book ai didi

c# - 在组件中的 Blazor WebAssembly 中,假设文化是正确的,如何使 DateTime.ToString 使用当前文化的日期格式?

转载 作者:行者123 更新时间:2023-12-05 04:43:42 26 4
gpt4 key购买 nike

我暂时将我的浏览器语言和区域设置设置为英语 - 英国,即使我在美国也是如此。我已删除“en-US”,现在将“en-GB”作为我唯一的语言偏好。

在我的 Blazor WebAssembly 站点的一个组件上,我有一个返回字符串的属性:myDate.ToString("d") + System.Globalization.CultureInfo.CurrentCulture.DisplayName; 呈现在我的页面上显示为 6/27/2020en (GB),其中 myDate 是 DateTime,设置为 2020 年 6 月 27 日 00:00:00.000。我的 Blazor 站点设置了 app.UseRequestLocalization(...) 中间件。

不应该以英国格式显示日期,即 27/06/2020?我只能猜测 ShortDatePattern 没有从 CultureInfo.CurrentCulture 中正确设置。会是什么?

更新:所有 WebAssembly 组件输出显示 DateTimeFormatInfo.CurrentInfo.ShortDatePattern == "M/d/yyyy" 即使 CultureInfo.CurrentCulture.Name == "en-GB"。为什么会这样?是什么从文化中设置了 ShortDatePattern,我可以“重新初始化”它吗?

显式调用 myDate.ToString("d", System.Globalization.CultureInfo.GetCultureInfo("en-GB")); 仍然奇怪地输出 M/d/yyyy 格式(美国格式)。 为什么会这样?

更新 2:我创建了一个最小示例:File-New Project、Blazor Web Assembly、.NET 5 ASP.NET Core 托管。我用以下内容替换了 App.Razor:

<div> current culture @(System.Globalization.CultureInfo.CurrentCulture.Name) </div>
<div> current date format @(System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.ShortDatePattern) </div>
<div> today @DateTime.Now.ToString("d") </div>

结果(出乎意料):

enter image description here

Firefox 浏览器设置(Edge 和 Chrome 类似并显示相同的问题):

enter image description here

这导致发送 Accept-Language: en-GB,en-US;q=0.7,en;q=0.3——这似乎是“更喜欢 en-GB”的正确方法"并导致 CultureInfo.CurrentCulture 具有正确的值。

我已经尝试使用 Microsoft.AspNetCore.Components.WebAssembly.* nuget 包版本 5.0.9、5.0.11 - 两者都显示相同的错误结果。

更新 3:6.0.0-rc.1 中相同的最小项目可以运行并提供正确的日期格式! 这真的是他们从未修复过的 Blazor 5 错误吗?

最佳答案

对于 .NET 6+,这似乎是固定的。

对于 .NET 5,我找不到根本原因,所以我需要编写此解决方法的代码,需要时需要显式调用它。显然,如果我们可以找到更好的解决方案以允许按预期使用 DateTime.ToString,则这是不可取的。

/// <summary>
/// Returns a short date-only string from a date/time value, based on the user's current culture.
/// </summary>
public static string ToLocalShortDate(this DateTime value)
{
// this is needed because I can't get localization to work -- see https://stackoverflow.com/q/69542125/7453
// (if we can fix, better to use DateTime.ToString("d"))

string format;
// countries taken from https://en.wikipedia.org/wiki/Date_format_by_country
if (CurrentCulture.Name.EndsWithAny("US", "CA", "ZA", "KE", "GH", "en"))
format = "MM/dd/yyyy";
else if (CurrentCulture.Name.EndsWithAny("CN", "JP", "KR", "KP", "TW", "HU", "MN", "LT", "BT"))
format = "yyyy-MM-dd";
else format = "dd/MM/yyyy";

return value.ToString(format);
}

/// <summary>
/// Returns true if and only if a string ends with any of some strings.
/// The value will not match a null reference.
/// </summary>
public static bool EndsWithAny(this string value, params string[] allowedValues) =>
allowedValues != null && value != null && allowedValues.Any(s => CurrentCulture.Name.EndsWith(s));

关于c# - 在组件中的 Blazor WebAssembly 中,假设文化是正确的,如何使 DateTime.ToString 使用当前文化的日期格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69542125/

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