作为最佳实践,我正在为路线构建 UrlHelper
问题是在调试时发现返回值始终为空
Url.RouteUrl("x") 返回 null
Url.RouteCollection["X"] 返回路由
我正在尝试做:
public static string Category(this UrlHelper helper, int Id, string category)
{
return helper.RouteUrl("X", new {id = Id, category= category});
}
我看不到我做错了什么