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

时间:2016-06-15 18:55:27

标签: c# asp.net asp.net-mvc asp.net-mvc-5 asp.net-mvc-areas

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

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

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);
        }
    }
}

链接触发器

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

RESULT

  

https://localhost:44306/admin/

     

&#39; /&#39;中的服务器错误应用

     

没有为此对象定义无参数构造函数。

6 个答案:

答案 0 :(得分:1)

AdminController

中不存在Index()方法

你唯一的方法是Prueba(),它不接收参数“area”。

你应该添加这样的东西

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

答案 1 :(得分:1)

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

答案 2 :(得分:1)

您已为区域定义了默认路线以使用“索引”操作:

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());
        }
    }
}

为该Controller定义“索引”操作,或将默认值更改为确实存在的操作,在您的情况下,唯一定义的操作是“Prueba”

答案 3 :(得分:1)

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

答案 4 :(得分:1)

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

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

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

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

答案 5 :(得分:1)

您可以尝试这样,它对我有用

 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
  • 清理项目,重建并运行。.