1

我有一个运行良好的 Web API 项目。我将它与一个 MVC 项目合并,现在只有带有 URI 参数的操作才有效。所有其他操作都以 404 Not Found 结束,甚至找不到控制器。

这是我在 WebApiConfig 中的内容(标准内容):

public static class WebApiConfig
{
    public static void Register(HttpConfiguration config)
    {
        // Web API configuration and services
        // Configure Web API to use only bearer token authentication.
        config.SuppressDefaultHostAuthentication();
        config.Filters.Add(new HostAuthenticationFilter(OAuthDefaults.AuthenticationType));

        // Web API routes
        config.MapHttpAttributeRoutes();

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

这是控制器类:

[Authorize]
[RoutePrefix("api/WikiPlan")]
public class WikiPlanController : ApiController

这是有效的操作:

http://localhost:2000/api/WikiPlan/SearchWikiPlans/baby
[AllowAnonymous]
[HttpGet]
[Route("SearchWikiPlans/{keyword}")]
[ResponseType(typeof(List<WikiPlanSearchResultViewModel>))]
public IHttpActionResult SearchWikiPlans(string keyword)

这是一个不起作用的(它曾经在它自己的项目中起作用):

http://localhost:2000/api/WikiPlan/TopWikiPlans
[AllowAnonymous]
[HttpGet]
[Route("TopWikiPlans")]
[ResponseType(typeof(List<TopWikiPlan>))]
public IHttpActionResult TopWikiPlans()

我不知道出了什么问题。谢谢你的帮助!

4

1 回答 1

4

感谢这个 Route Debugger 工具(http://blogs.msdn.com/b/webdev/archive/2013/04/04/debugging-asp-net-web-api-with-route-debugger.aspx),我是能够追踪损坏的 URL 并找出问题所在。

原来框架正在将损坏的 URL 与 MVC 路由而不是我的 API 路由进行匹配。因此,我将调用移动到 Global.asax 中的 MVC 路由顶部注册 API 路由,现在它已正确匹配。

于 2014-07-06T02:57:51.147 回答