我刚刚创建了一个新的 MVC 4 项目,并使用 Database First 添加了一个 EDO.NET 实体数据模型。我不确定究竟是什么原因,但事情似乎不像以前那样正常运作。我必须手动添加 EF 代码生成项来生成实体类。
无论如何,我遇到的主要问题是默认路由似乎被忽略了。我的路由配置是默认的,如下:
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 }
);
}
}
但是 [LOCALHOST]/Properties/ 没有找到 /Properties/Index,它仅在“/”应用程序中返回 404 服务器错误。无法找到该资源。
我不会因为犯了一些愚蠢的错误或忘记了一些重要的事情而忘记了自己,但我已经在 StackOverflow 和互联网上搜索过类似的问题,但没有一个解决方案有任何帮助。如果有人知道为什么,我会很感激朝着正确的方向前进。
要求的编辑:
我有 3 个控制器:
- 主页 - 原封不动
- 帐户 - 未动过
- 属性 - 带默认 MVC CRUD 操作(索引、详细信息、创建、编辑)
它在托管在 IIS 上时工作正常,但在 VS 的内部调试 IIS 上却不能。
@Html.ActionLink("Properties", "Index", "Properties") 运行时生成 http://[localhost]:53909/Properties。但是单击生成的链接会给我一个“'/'应用程序中的服务器错误。找不到资源。”
PropertiesController.cs(仅索引操作)
public class PropertiesController : Controller
{
private PropertyInfoEntities db = new PropertyInfoEntities();
//
// GET: /Properties/
public ActionResult Index()
{
//Mapper.CreateMap<Property, PropertiesListViewModel>()
//.ForMember(vm => vm.MainImageURL, m => m.MapFrom(u => (u.MainImageURL != null) ? u.MainImageURL : "User" + u.ID.ToString()))
// ;
//List<PropertiesListViewModel> properties =
// Mapper.Map<List<Property>, List<PropertiesListViewModel>>(db.Properties.ToList());
return View(db.Properties.Include(p => p.Currency).Include(p => p.Type).Include(p => p.Province).Include(p => p.Region).Include(p => p.SaleType).Include(p => p.Source).Include(p => p.Town).ToList());
}
}
_Layout.cshtml
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>@ViewBag.Title - My ASP.NET MVC Application</title>
<link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width" />
@Styles.Render("~/Content/css")
@Scripts.Render("~/bundles/modernizr")
</head>
<body>
<header>
<div class="content-wrapper">
<div class="float-left">
<p class="site-title">@Html.ActionLink("your logo here", "Index", "Home")</p>
</div>
<div class="float-right">
<section id="login">
@Html.Partial("_LoginPartial")
</section>
<nav>
<ul id="menu">
<li>@Html.ActionLink("Home", "Index", "Home")</li>
<li>@Html.ActionLink("About", "About", "Home")</li>
<li>@Html.ActionLink("Properties", "Index", "Properties")</li>
<li>@Html.ActionLink("Contact", "Contact", "Home")</li>
</ul>
</nav>
</div>
</div>
</header>
....
编辑 2:即使有特定的路线,它仍然被忽略
namespace ProjectName
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
"Properties",
"Properties/{action}/{id}",
new { controller = "Properties", action = "Index", id = UrlParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
}
干杯!