在Azure中显示DateTime格式问题

时间:2018-12-24 22:43:09

标签: .net-core

我们的StartUp.cs文件中的日期格式为dd / MM / YYYY:

services.Configure<RequestLocalizationOptions>(options =>
            {
                options.DefaultRequestCulture = new RequestCulture("en-AU");
                //By default the below will be set to whatever the server culture is. 
                options.SupportedCultures = new List<CultureInfo> { new CultureInfo("en-AU") };

                options.RequestCultureProviders = new List<IRequestCultureProvider>();
            });

但是在我们的索引Razor页面之一上,我们发现显示格式仍然以MM / dd / YYYY显示任何想法吗?

但是,在“开发”框中,日期格式设置工作正常。

环境: .Net Core 2.1

0 个答案:

没有答案