asp.net-mvc – 没有找到与名为“User”的控制器匹配的类型

我正在尝试浏览到其网址为以下格式的网页:
localhost:xxxxx / User / {id} / VerifyEmail?secretKey = xxxxxxxxxxxxxxx

我在RouteConfig.cs文件添加了一条新路由,因此我的RouteConfig.cs如下所示:

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

        routes.MapRoute(
            name: "VerifyEmail",url: "User/{id}/VerifyEmail",defaults: new { controller = "User",action = "VerifyEmail" }
        );

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

不幸的是,当尝试导航到该URL时,我得到此页面

<Error>
    <Message>
        No HTTP resource was found that matches the request URI 'http://localhost:52684/User/f2acc4d0-2e03-4d72-99b6-9b9b85bd661a/VerifyEmail?secretKey=e9bf3924-681c-4afc-a8b0-3fd58eba93fe'.
    </Message>
    <MessageDetail>
        No type was found that matches the controller named 'User'.
    </MessageDetail>
</Error>

这里是我的UserController:

public class UserController : Controller
{

    // GET      /User/{id}/VerifyEmail
    [HttpGet]
    public ActionResult VerifyEmail(string id,string secretKey)
    {
        try
        {
            User user = UsersBL.Instance.Verify(id,secretKey);
            //logger.Debug(String.Format("User %s just signed-in in by email.",user.DebugDescription()));
        }
        catch (Exception e)
        {
            throw new Exception("Failed",e);
        }
        return View();
    }
}

请告诉我我做错了什么?

解决方法

在我花了几乎30分钟尝试解决这个问题的时候,我发现是什么原因造成的:

我在WebApiConfig.cs中定义的路由是这样的:

config.Routes.MapHttpRoute(
    name: "ControllersApi",routeTemplate: "{controller}/{action}"
);

应该是这样的:

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

正如你所看到的那样,它干扰了RouteConfig.cs中定义的标准路由。

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....