使用属性路由时替换Url.Link

时间:2013-11-20 08:04:06

标签: c# asp.net-web-api asp.net-web-api-routing attributerouting

我已将项目从webapi升级到webapi2,现在正在使用属性路由。我有一个方法,我使用Url helper获取url。哪个是替换Url helper的最佳方法(因为这不适用于属性)。

旧用法的示例代码:

protected Uri GetLocationUri(object route, string routeName = WebApiConfig.RouteDefaultApi)
{
    string uri = Url.Link(routeName, route);
    return new Uri(uri);
}

路线配置:

public static void Register(HttpConfiguration config)
{
    config.MapHttpAttributeRoutes();

    config.Routes.MapHttpRoute(
        name: RouteDefaultApi,
        routeTemplate: "{controller}/{id}/{action}",
        defaults: new { id = RouteParameter.Optional, action = "Default" }
    );           
}

用法:

Uri myUrl = GetLocationUri(route: new { action = "images", id = eventId });

1 个答案:

答案 0 :(得分:40)

当您想要生成指向控制器/操作的属性路由的链接时,为什么要尝试使用传统路由RouteDefaultApi

以下是您需要如何使用Url.Link和属性路由的示例用法:

[Route("api/values/{id}", Name = "GetValueById")]
public string GetSingle(int id)

Url.Link("GetValueById", new { id = 10 } );