5

我遇到了一个让我发疯的问题。

我有一个定义了多个区域的 MVC 4 WebAPI 应用程序。

我的工作区发送控制器 (SendController.cs) 定义如下:

namespace TargetAPI.Areas.Jobs.Controllers
{
    public class SendController : ApiController
    {
        [HttpPost]
        public HttpResponseMessage Index(SendRequest req)
        {
            try
            {
            //blah blah
            }
            catch (Exception ex)
            {
            //blah blah
            }
        }
    }
}

我的工作区注册 (JobsAreaRegistration.cs) 定义如下:

namespace TargetAPI.Areas.Jobs
{
    public class JobsAreaRegistration : AreaRegistration
    {
        public override string AreaName
        {
            get
            {
                return "Jobs";
            }
        }

        public override void RegisterArea(AreaRegistrationContext context)
        {
            context.MapRoute(
                "Jobs_long",
                "Jobs/{controller}/{action}/{id}",
                new { action = "Index", id = UrlParameter.Optional },
                new[] { "TargetAPI.Areas.Jobs.Controllers" }
            );
        }
    }
}

我的 RouteConfig.cs 说:

namespace TargetAPI
{
    public class RouteConfig
    {
        public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapRoute(
                 name: "Default",
                 url: "{controller}/{action}/{id}",
                 defaults: new { controller = "Home", 
                     action = "Index", id= UrlParameter.Optional },
                 namespaces: new string[] { "TargetAPI.Controllers" }
            );
        }
    }
}

当我在其上运行路由调试器时,我得到:( 来源:boomerang.com我的路线调试

但是当我尝试发布到 URL “Jobs/Send”时,我得到:

找不到路径“/Jobs/Send”的控制器或未实现 IController。

我已经尝试了如此多的迭代和组合,我的头脑在旋转。有任何想法吗?

谢谢!

4

3 回答 3

10

原来 WebAPI 不处理区域!想象一下我的惊喜。所以我找到了一篇很棒的帖子http://blogs.infosupport.com/asp-net-mvc-4-rc-getting-webapi-and-areas-to-play-nicely/。现在我正在前进。

于 2012-09-07T00:50:10.950 回答
1

除了不支持区域(因为 MapHTTPRoute 没有命名空间支持)之外,API 控制器必须使用 MapHttpRoute,而不是本示例中的 MapRoute(删除区域后):

    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

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

        routes.MapRoute(
            "Default", // Route name
            "{controller}/{action}/{id}", // URL with parameters
            new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );

    }

注意 {action} 的缺失,Method 不是 Action,put 取自 HTTP 请求:Get、Head 等...

于 2013-01-07T17:20:45.010 回答
0

我有同样的问题,解决方法很简单:我忘了添加文件_ViewStart.cshtml_Layout.cshtml,可以帮助你

于 2012-11-18T15:51:41.440 回答