如何在启用 ASP.NET Core 2.2 EndpointRouting 的情况下使用 RouteDataRequestCultureProvider?
Posted
技术标签:
【中文标题】如何在启用 ASP.NET Core 2.2 EndpointRouting 的情况下使用 RouteDataRequestCultureProvider?【英文标题】:How to use RouteDataRequestCultureProvider with ASP.NET Core 2.2 EndpointRouting enabled? 【发布时间】:2019-06-18 13:06:43 【问题描述】:我正在尝试在新的 ASP.NET Core 2.2 MVC 项目中使用 RouteDataRequestCultureProvider
。
我已阅读 Routing in ASP.NET Core 上的 Microsoft 文档以了解 2.2 中引入的更改,但我不明白为什么“文化”不被识别为 URL 生成的环境值。
我在 Startup.cs 中更新了 ConfigureServices
以包含设置:
var supportedCultres = new[] new CultureInfo("en"), new CultureInfo("fr") ;
services.Configure<RequestLocalizationOptions>(options =>
options.DefaultRequestCulture = new Microsoft.AspNetCore.Localization.RequestCulture("en");
options.SupportedCultures = supportedCultres;
options.SupportedUICultures = supportedCultres;
options.RequestCultureProviders = new[] new RouteDataRequestCultureProvider Options = options ;
);
我修改了Configure
中的应用程序和默认路由以使用“文化”路径段:
var locOptions = app.ApplicationServices.GetService<IOptions<RequestLocalizationOptions>>().Value;
app.UseRequestLocalization(locOptions);
app.UseMvc(routes =>
routes.MapRoute(
name: "default",
template: "culture:regex(^(en|fr)$)/controller=Home/action=Index/id?");
);
当我按预期导航到 /en 或 /fr 时,此路由将解析为 HomeController.Index()
,但使用 Anchor Tag Helper 指向其他操作的任何链接都将呈现为 <a href="">
(包括脚手架生成的隐私链接)。
关闭 EnableEndpointRouting 会导致 Anchor Tag Helper 再次工作:
services.AddMvc(opts => opts.EnableEndpointRouting = false; )
.SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
添加显式 asp-route-culture
值也可以:
<a asp-route-culture="en" asp-controller="Home" asp-action="About">About</a>
但我不明白为什么需要进行任何更改,因为“文化”路由值已经存在于 RouteData.Values
集合中,并且锚标记助手自动使用先前的路由模型。这些都是有效的操作路径,那么为什么当路径包含文化时 URL 生成会失败?
【问题讨论】:
您解决了这个问题吗? 我在核心 3.1 中遇到了同样的问题 - ***.com/questions/59267971/… 【参考方案1】:net core 3.1 也有同样的问题。我最终设法找到了原因并找到了解决方案。
read my solution here - https://***.com/questions/59267971/using-routedatarequestcultureprovider-in-asp-net-core-3-1/59283426#59283426
TLDNR:由于核心 2.2 环境路由值不再传递到 url 构建器中,因此您需要显式传递它们。我通过扩展 razor 锚标记助手解决了它。
【讨论】:
以上是关于如何在启用 ASP.NET Core 2.2 EndpointRouting 的情况下使用 RouteDataRequestCultureProvider?的主要内容,如果未能解决你的问题,请参考以下文章
本地 Javascript Fetch Post 请求失败,调用 ASP.NET Core 2.2 Web API。 CORS 已启用