我一直在尝试按照详细说明在我当前的项目中设置一个新区域,但我无法取得成功。
是的,有人可以帮助我吗?到目前为止,这是我的代码: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>
区域文件结构截图
的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;中的服务器错误应用
没有为此对象定义无参数构造函数。
答案 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)
只是为了完成其他人的可能性:
您正在管理控制器中引用不存在的操作索引,因此您有三种可能性。
添加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" }
);