6

我正在努力让 API 帮助页面显示我所有的 API 端点,并以我想要的样式显示它们。

这是我的路线:

config.Routes.MapHttpRoute("Orgs", "v1/Orgs/{orgId}", 
new { controller = "Orgs", orgId = RouteParameter.Optional });

config.Routes.MapHttpRoute("OrgDescendants", "v1/Orgs/{orgId}/Descendants", 
new { controller = "Orgs", action = "OrgDescendants" });

这是我所有的控制器方法:

[HttpGet]
public IEnumerable<Org> GetAllOrgs()

[HttpGet]
public Org Get(string orgId)

[HttpGet]
[ActionName("OrgDescendants")]
public List<Org> Descendants(string orgId)

[HttpPost]
public HttpResponseMessage Post(Org org)

[HttpPut]
public HttpResponseMessage Put(string orgId, Org org)

[HttpDelete]
public void Delete(string orgId)

以下是帮助页面显示的端点:

GET v1/Orgs
POST v1/Orgs
PUT v1/Orgs/{orgId}
DELETE v1/Orgs/{orgId}
GET v1/Orgs/{orgId}/Descendants

如您所见,帮助页面缺少以下端点:

GET v1/Orgs/{orgId}

我已经尝试了很多不同的路由排列,但我已经迷失了方向。无论我尝试什么,我总是会丢失一些端点或“不正确”格式化。

例如,我最终得到:

GET v1/Orgs/{orgId}/Get

当我想要时:

GET v1/Orgs/{orgId}

或者我最终得到:

PUT v1/Orgs?orgId={orgId}

当我想要时:

PUT v1/Orgs/{orgId}

无论我尝试什么组合,我似乎都无法按照我想要的方式得到它们。任何帮助将非常感激!

4

1 回答 1

0

通常,当项目架构(层次结构)存在问题时,会遇到此类问题。

此外,您可以尝试以不同的方式添加路由器。例如:

RouteTable.Routes.Add(
            "UserProfiles",
            new Route("Profile/{uid}/{mode}", new ProfileRouterHandler("~/Profile/Default.aspx")));

路由器处理程序看起来像:

public class ProfileRouterHandler: IRouteHandler
{
    private string VirtualPath { get; set; }
    public ProfileRouterHandler()
    {

    }

    public ProfileRouterHandler(string virtualPath)
    {
        VirtualPath = virtualPath;
    }

    public IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        string param = requestContext.RouteData.Values["uid"] as string;
        string mode = requestContext.RouteData.Values["mode"] as string;
        long id;
        long.TryParse(param, out id);
        if (id > 0)
        {
            string filePath = "~/Profile/Default.aspx?uid=" + param + (!string.IsNullOrEmpty(mode) ? "&mode=" + mode : "");
            VirtualPath = "~/Profile/Default.aspx";
            HttpContext.Current.RewritePath(filePath);
        }
        else
        {
            string filePath = "~/Profile/" + param + ".aspx";
            VirtualPath = filePath;
            HttpContext.Current.RewritePath(filePath);
        }

        return BuildManager.CreateInstanceFromVirtualPath(VirtualPath, typeof(Page)) as Page; 
    }
}

希望这会有所帮助。

于 2013-09-18T13:55:04.297 回答