4

有些我正在运行 Nancy Web 框架自托管演示 Nancy.Demo.Hosting.Self 的略微修改版本。我已对其进行了修改以包含 Nancy 的 Razor 视图引擎 Nancy.ViewEngines.Razor。当我使用基本的 Razor 功能时它工作得很好,但是我遇到了@Render 部分视图和布局的问题。

ASP.NET 之外是否支持这些高级功能?

我从 Nancy.Demo.Hosting.Aspnet 复制的相同视图似乎在那里运行良好。

我因为找不到我的“标题”而崩溃。

这是视图:

@{ Layout = "razor-layout.cshtml"; }
@section Header {
    <!-- This comment should appear in the header -->
}
<h1>Hello @Model.FirstName</h1>
<p>This is a sample Razor view!</p>
@section Footer {
    <p>This is footer content!</p>
}

和布局

<html>
<head>
    <title>Razor View Engine Demo - @Model.FirstName</title>
    @RenderSection("Header")
</head>
<body>
    <div id="body">@RenderBody()</div>
    <div id="footer">@RenderSection("Footer")</div>
    <div id="optional">@RenderSection("Optional", false)</div>
</body>
</html>
4

2 回答 2

4

您确定您的标头 cshtml 文件设置为复制到输出目录吗?

于 2011-11-01T11:34:57.313 回答
0

工作正常,这是我的 _Layout.cshtml(注意@RenderBody):

@inherits Nancy.ViewEngines.Razor.NancyRazorViewBase
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Test Owin</title>
    <link href="/Content/bootstrap/bootstrap.css" rel="stylesheet" />
</head>
<body>
   <div class="container body-content">
        @RenderBody()
        <hr />
        <footer>
            <p>&copy; 2016 - My Test Owin Application</p>
        </footer>
    </div>
    <script src="/Scripts/jquery-3.1.1.js"></script>
    <script src="/Scripts/bootstrap.js"></script>
</body>
</html>

这是我的内容,Index.cshtml:

@{ Layout = "_Layout.cshtml"; }

<div class="jumbotron">
    <h1>Test Owin</h1>
    <p class="lead">Test</p>
    <p>
        Yesterday, Elon Musk got on stage at the 2016 International Astronautical Congress and unveiled the first real details about the big fucking rocket they’re making.
    </p>
</div>
于 2016-10-06T15:15:39.347 回答