0
我使用屬性的路由在控制器路由的行動,但asp.net產生錯誤的幫助頁面asp.net幫助頁面不顯示正確的路線
[HttpGet]
[Route("getAll")]
[AllowAnonymous]
public IHttpActionResult GetCategories(){...}
我使用屬性的路由在控制器路由的行動,但asp.net產生錯誤的幫助頁面asp.net幫助頁面不顯示正確的路線
[HttpGet]
[Route("getAll")]
[AllowAnonymous]
public IHttpActionResult GetCategories(){...}
設置你的配置使用屬性路由。
public static class WebApiConfig
{
public static void Configure(HttpConfiguration configuration)
{
//the following config sets up your routing mechanism to use attributes
configuration.MapHttpAttributeRoutes();
}
}