Aktualizacja w wersji ASP.NET Core> = 2,2
Z ASP.NET Core 2.2 wraz z małymi literami możesz również ustawić trasę przerywaną za pomocą, ConstraintMap
co spowoduje, że Twoja trasa /Employee/EmployeeDetails/1
do /employee/employee-details/1
zamiast /employee/employeedetails/1
.
Aby to zrobić, najpierw utwórz SlugifyParameterTransformer
klasę w następujący sposób:
public class SlugifyParameterTransformer : IOutboundParameterTransformer
{
public string TransformOutbound(object value)
{
return value == null ? null : Regex.Replace(value.ToString(), "([a-z])([A-Z])", "$1-$2").ToLower();
}
}
W przypadku ASP.NET Core 2.2 MVC:
W ConfigureServices
metodzie Startup
zajęć:
services.AddRouting(option =>
{
option.ConstraintMap["slugify"] = typeof(SlugifyParameterTransformer);
});
Konfiguracja trasy powinna wyglądać następująco:
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller:slugify}/{action:slugify}/{id?}",
defaults: new { controller = "Home", action = "Index" });
});
W przypadku interfejsu API sieci Web ASP.NET Core 2.2:
W ConfigureServices
metodzie Startup
zajęć:
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc(options =>
{
options.Conventions.Add(new RouteTokenTransformerConvention(new SlugifyParameterTransformer()));
}).SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}
W przypadku ASP.NET Core> = 3,0 MVC:
W ConfigureServices
metodzie Startup
zajęć:
services.AddRouting(option =>
{
option.ConstraintMap["slugify"] = typeof(SlugifyParameterTransformer);
});
Konfiguracja trasy powinna wyglądać następująco:
app.UseEndpoints(endpoints =>
{
endpoints.MapAreaControllerRoute(
name: "AdminAreaRoute",
areaName: "Admin",
pattern: "admin/{controller:slugify=Dashboard}/{action:slugify=Index}/{id:slugify?}");
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller:slugify}/{action:slugify}/{id:slugify?}",
defaults: new { controller = "Home", action = "Index" });
});
Dla ASP.NET Core> = 3.0 Web API:
W ConfigureServices
metodzie Startup
zajęć:
services.AddControllers(options =>
{
options.Conventions.Add(new RouteTokenTransformerConvention(new SlugifyParameterTransformer()));
});
Dla ASP.NET Core> = 3.0 Razor Pages:
W ConfigureServices
metodzie Startup
zajęć:
services.AddRazorPages(options =>
{
options.Conventions.Add(new PageRouteTransformerConvention(new SlugifyParameterTransformer()));
})
To da /Employee/EmployeeDetails/1
drogę do/employee/employee-details/1
AddMvc()
swojąStartup.ConfigureServices()
metodę.AddRouting()
który jest również wywoływany przez,AddMvc()
używaTry
wariantów metod dodawania zależności do kolekcji usług. Więc kiedy zobaczy, że zależności routingu zostały już dodane, pominie te częściAddMvc()
logiki konfiguracji.