我们已经构建了一个 ASP.NET Core 2.1 网站,其中www.example.org/uk和www.example.org/de等 URL决定了resx
要显示的文件和内容。升级到 ASP.NET Core 2.2 后,页面会加载,但生成的所有链接都会生成空白/空 href。
例如,这样的链接:
<a asp-controller="Home" asp-action="Contact">@Res.ContactUs</a>
将在 2.2 中产生一个空的 href,如下所示:
<a href="">Contact us</a>
但在 2.1 中,我们得到了正确的 href:
<a href="/uk/contact">Contact us</a>
我们正在使用约束映射来管理基于 URL 的语言功能 - 这是代码:
启动.cs
// configure route options {lang}, e.g. /uk, /de, /es etc
services.Configure<RouteOptions>(options =>
{
options.LowercaseUrls = true;
options.AppendTrailingSlash = false;
options.ConstraintMap.Add("lang", typeof(LanguageRouteConstraint));
});
...
app.UseMvc(routes =>
{
routes.MapRoute(
name: "LocalizedDefault",
template: "{lang:lang}/{controller=Home}/{action=Index}/{id?}");
}
LanguageRouteConstraint.cs
public class LanguageRouteConstraint : IRouteConstraint
{
private readonly AppLanguages _languageSettings;
public LanguageRouteConstraint(IHostingEnvironment hostingEnvironment)
{
var builder = new ConfigurationBuilder()
.SetBasePath(hostingEnvironment.ContentRootPath)
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true);
IConfigurationRoot configuration = builder.Build();
_languageSettings = new AppLanguages();
configuration.GetSection("AppLanguages").Bind(_languageSettings);
}
public bool Match(HttpContext httpContext, IRouter route, string routeKey, RouteValueDictionary values, RouteDirection routeDirection)
{
if (!values.ContainsKey("lang"))
{
return false;
}
var lang = values["lang"].ToString();
foreach (Language lang_in_app in _languageSettings.Dict.Values)
{
if (lang == lang_in_app.Icc)
{
return true;
}
}
return false;
}
}
我缩小了问题范围,但找不到解决方法;基本上在2.2。上述方法中有些参数没有设置IRouteConstraint Match
,例如
httpContext = null
route = {Microsoft.AspNetCore.Routing.NullRouter)
在 2.1
httpContext = {Microsoft.AspNetCore.Http.DefaultHttpContext}
route = {{lang:lang}/{controller=Home}/{action=Index}/{id?}}
我在 2.1 和 2.2 之间所做的唯一区别是我改变了
var builder = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true);
到以下(由于 https://github.com/aspnet/AspNetCore/issues/4206)
var builder = new ConfigurationBuilder()
.SetBasePath(hostingEnvironment.ContentRootPath) // using IHostingEnvironment
.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true);
有任何想法吗?
更新 根据https://docs.microsoft.com/en-us/aspnet/core/fundamentals/routing?view=aspnetcore-2.2#parameter-transformer-reference ASP.NET Core 2.2 使用 EndpointRouting 而 2.1 使用 IRouter 基本逻辑。这解释了我的问题。现在,我的问题是 2.2 使用新的 EndpointRouting 的代码是什么样的?