ASP.net 现有项目中的 MVC 5 区域无法正常工作

ASP.net MVC 5 Areas in existing project not working

我一直在尝试按照详细说明在我当前的项目中设置一个新区域,但我无法获得成功的结果。

有人可以帮帮我吗?到目前为止,这是我的代码:

RouteConfig.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;

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

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


            routes.MapRoute(
               name: "signin-google",
               url: "signin-google",
               defaults: new
                   {
                       controller = "Account",
                       action = "ExternalLoginCallback"
                   },
                namespaces: new string[] { "MesaServicio.Controllers" }
               );
        }
    }
}

AdminAreaRegistration.cs

using System.Web.Mvc;

namespace MesaServicio.Areas.Admin
{
    public class AdminAreaRegistration : AreaRegistration 
    {
        public override string AreaName 
        {
            get 
            {
                return "Admin";
            }
        }

        public override void RegisterArea(AreaRegistrationContext context) 
        {
            context.MapRoute(
                "Admin_default",
                "Admin/{controller}/{action}/{id}",
                new { controller="Admin", action = "Index", id = UrlParameter.Optional },
                namespaces: new[] { "MesaServicio.Areas.Admin.Controllers" }
            );
        }
    }
}

AdminController.cs

using System.Linq;
using System.Web.Mvc;
using MesaServicio.Models;

namespace MesaServicio.Areas.Admin.Controllers
{
    public class AdminController : Controller
    {
        private ApplicationDbContext db = new ApplicationDbContext();

        // GET: Admin/Admin
        public ActionResult Prueba()
        {
            return View(db.Corps.ToList());
        }
    }
}

Index.cshtml

@{
    ViewBag.Title = "Index";
}

<h2>Index</h2>

区域文件结构截图

File structure

Global.asax.cs

using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;

namespace MesaServicio
{
    public class MvcApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);
        }
    }
}

Link触发

<li><a href="@Url.Action("Index","Admin", new {area = "admin" })"><i class="fa fa-circle-o"></i> Admin</a></li>

结果

https://localhost:44306/admin/

Server Error in '/' Application.

No parameterless constructor defined for this object.

AdminController 中不存在方法 Index()

您唯一的方法是 Prueba(),它不接收参数 "area"。

你应该添加这样的东西

    public ActionResult Index(string area)
            { 
                //Do whatever you want
                return View();
            }

AdminController没有 Index 操作,而是有 Prueba 操作。尝试将方法 Prueba 重命名为 Index.

您已为区域定义默认路线以使用 "Index" 操作:

public override void RegisterArea(AreaRegistrationContext context) 
{
    context.MapRoute(
        "Admin_default",
        "Admin/{controller}/{action}/{id}",
        new { controller="Admin", action = "Index", id = UrlParameter.Optional },
        namespaces: new[] { "MesaServicio.Areas.Admin.Controllers" }
    );
}

您还没有在管理区域控制器中定义的:

namespace MesaServicio.Areas.Admin.Controllers
{
    public class AdminController : Controller
    {
        private ApplicationDbContext db = new ApplicationDbContext();

        // GET: Admin/Admin
        public ActionResult Prueba()
        {
            return View(db.Corps.ToList());
        }
    }
}

为该控制器定义 "Index" 动作,或者将默认值更改为确实存在的动作,在您的情况下,唯一定义的动作是 "Prueba"

在 ASP.NET MVC 区域应用程序中,您可以像在任何 MVC 应用程序中一样在区域中 link。例如,您可以调用 ActionLink 方法,也可以调用采用控制器或操作名称的任何其他例程(例如 RedirectToAction 方法)。

只是为了完成其他人的可能性:

您正在引用管理控制器中不存在的操作索引,因此您有三种可能。

  1. 将动作 Prueba 重命名为索引
  2. 添加名为索引的新操作
  3. 添加 ActionName 属性,让 MVC 知道发生了什么

    [ActionName("Index")]
    public ActionResult Prueba()
    {
        return View(db.Corps.ToList());
    }
    

你可以这样试,对我有用

 routes.MapRoute(
                  name: "AdminRoute",
                    url: "Admin/{controller}/{action}/{id}",
                    defaults: new { action = "Index", controller = "Login", id = UrlParameter.Optional },
                    namespaces: new[] { "Admin.Areas.DESK.Controllers" }
              );
  • 将此代码复制并粘贴到 Routeconfig.cs 中的默认路由上方
  • 从项目
  • 中删除 AreaRegistration.cs
  • 清理项目,重建并运行..