1

我的视图找不到布局。但一切看起来都很好。我的结构如下图所示:

在此处输入图像描述

我的观点如下所示:

@model xxx.Web.Model.Home.IndexModel
@{
    ViewBag.Title = "Index";
    Layout = "~/Views/_MainLayout.cshtml";
}

我的布局如下所示:

<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="utf-8">
<title>Bootstrappage:Free Bootstrap Template (bootstrap 2.3.1 version)</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- 
<link rel="stylesheet" href="themes/style/bootstrap.min.css" />
<link rel="stylesheet" href="themes/style/bootstrap-responsive.min.css" />
-->
<link rel="stylesheet/less" type="text/css" href="../../themes/less/bootstrap.less">
<script src="../../themes/js/less/less.js" type="text/javascript"></script>
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="assets/ico/apple-touch-icon-57-precomposed.png">
<script type="text/javascript">
    $(function () {
        @RenderSection("DocumentReady", false)
    });
</script>
</head>
<body data-offset="40">
@{Html.RenderAction("Header", "Partial");}
@{Html.RenderAction("Navbar", "Partial");}
@RenderBody()
@{Html.RenderAction("Footer", "Partial");}
<script src="themes/js/lib/jquery-1.9.1.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>

</body>
</html>

我的控制器如下所示:

 public ActionResult Index()
    {
        IndexModel model = new IndexModel();
        HomeModelFactory modelFactory = new HomeModelFactory();
        model.Files = modelFactory.CreateIndexModel();

        return View(model);
    }

例外: 在此处输入图像描述

为什么我得到这个异常?它运作良好。

4

3 回答 3

2

以及 View / Controller 的全部内容好吗?

不查看视图/控制器的一些可能场景是;- 缺少某些部分(例如“DocumentReady”) - 视图正在尝试解析未设置的模型属性(即 null)

于 2013-08-05T01:25:38.060 回答
0

您可以检查 _MainLayout.cshtml 文件上的属性设置。在我将 VisualStudio 属性 BuildAction 设置为 Content 之前,我遇到了同样的问题(在搜索路径中找不到布局页面)。我已经复制了文件并重命名了它,并且该属性已设置为“无”。

于 2020-04-22T23:04:15.027 回答
-4

这是你的问题:Layout = "~/Views/_MainLayout.cshtml";

_Layout 参考应该是Layout = "~/Views/Shared/_MainLayout.cshtml";

不要再犯此类错误了!

于 2013-08-05T02:31:30.557 回答