1

我刚刚创建了一个新的 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 个控制器:

  1. 主页 - 原封不动
  2. 帐户 - 未动过
  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 }
            );
        }
    }
}

干杯!

4

5 回答 5

3

我尝试将 PropertiesController 的名称更改为 Properties1Controller,并且路由完全可以正常工作。经过进一步挖掘,我发现这是因为Properties 是 Windows Reserved Keyword

总之,问题的解决方法:不要使用保留关键字作为控制器名称。

奇怪的是,/Properties/Index 的路由完全正常,而 /Properties/ 的路由在生产 IIS 上完全正常,只是不适用于开发。这使得解决问题变得更加困难,但最终还是设法解决了问题。

谢谢大家的帮助。

于 2013-11-06T10:19:55.870 回答
2

默认路由意味着每个 [localhost]/foo/bar 请求都被转发到 FooController 及其必须返回一些现有视图的 Bar 操作。可能你没有一些。
“defaults”参数设置默认控制器和动作名称,以防它们未在请求中指定(即 http://[localhost]/),因此在您的情况下,这将搜索 HomeController 及其索引动作。

于 2013-11-04T12:50:13.353 回答
2

在您的 Global.asax.cs 文件中,您是否注册了路线?例如:

RouteConfig.RegisterRoutes(RouteTable.Routes);
于 2013-11-04T12:50:56.413 回答
2

访问localhost/properties明确表示您要调用PropertiesController. 如果您的意思是您希望它成为您的默认路由,那么您需要将您的路由配置更改为以下内容:

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

这将允许您直接从localhost. 但是,听起来好像您缺少 .cshtml 文件。你确定~/Views/Properties/Index.cshtml存在吗?

于 2013-11-04T12:52:33.697 回答
1

Properties 控制器的命名空间是否符合“ProjectNamespace.Controllers”约定?如果您从其他来源复制代码,您可能忘记更改控制器类的命名空间。

于 2013-11-04T14:39:27.647 回答