www.example.org/ukやwww.example.org/deresx
などの URL が表示するファイルとコンテンツを決定する ASP.NET Core 2.1 Web サイトを構築しました。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 ベースの言語機能を管理するために制約マップを使用しています。コードは次のとおりです。
Startup.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 を使用するためのコードはどのようになるでしょうか?