ASP.NET Core 버전> = 2.2의 업데이트
에서 ASP.NET 코어 2.2 과 함께 소문자 당신은 또한 할 수 경로를 점선 사용하여 ConstraintMap
경로를 만들 것이다 /Employee/EmployeeDetails/1
에 /employee/employee-details/1
대신 /employee/employeedetails/1
.
이렇게하려면 먼저 SlugifyParameterTransformer
클래스를 다음과 같이 만들어야합니다 .
public class SlugifyParameterTransformer : IOutboundParameterTransformer
{
public string TransformOutbound(object value)
{
return value == null ? null : Regex.Replace(value.ToString(), "([a-z])([A-Z])", "$1-$2").ToLower();
}
}
ASP.NET Core 2.2 MVC의 경우 :
에서 ConfigureServices
의 방법 Startup
클래스 :
services.AddRouting(option =>
{
option.ConstraintMap["slugify"] = typeof(SlugifyParameterTransformer);
});
그리고 경로 구성은 다음과 같아야합니다.
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller:slugify}/{action:slugify}/{id?}",
defaults: new { controller = "Home", action = "Index" });
});
ASP.NET Core 2.2 Web API의 경우 :
에서 ConfigureServices
의 방법 Startup
클래스 :
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc(options =>
{
options.Conventions.Add(new RouteTokenTransformerConvention(new SlugifyParameterTransformer()));
}).SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}
ASP.NET Core> = 3.0 MVC의 경우 :
에서 ConfigureServices
의 방법 Startup
클래스 :
services.AddRouting(option =>
{
option.ConstraintMap["slugify"] = typeof(SlugifyParameterTransformer);
});
그리고 경로 구성은 다음과 같아야합니다.
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" });
});
ASP.NET Core> = 3.0 Web API의 경우 :
에서 ConfigureServices
의 방법 Startup
클래스 :
services.AddControllers(options =>
{
options.Conventions.Add(new RouteTokenTransformerConvention(new SlugifyParameterTransformer()));
});
ASP.NET Core> = 3.0 Razor 페이지의 경우 :
에서 ConfigureServices
의 방법 Startup
클래스 :
services.AddRazorPages(options =>
{
options.Conventions.Add(new PageRouteTransformerConvention(new SlugifyParameterTransformer()));
})
이것은 /Employee/EmployeeDetails/1
경로를 만들 것입니다/employee/employee-details/1
AddMvc()
당신의Startup.ConfigureServices()
방법.AddRouting()
에서 호출되는 메서드는 서비스 컬렉션에 종속성을 추가하기위한 변형 된 메서드를AddMvc()
사용합니다Try
. 따라서 라우팅 종속성이 이미 추가 된 것을 확인하면AddMvc()
설정 논리의 해당 부분을 건너 뜁니다 .