为什么我的视图不会在_Layout.cshtml中呈现

时间:2016-10-11 14:33:56

标签: c# asp.net asp.net-mvc-4 razor

我正在从 Pro ASP.NET 4.0 这本书学习ASP.NET,但我一直坚持添加CartController和Views / Cart / Index.cshtml

我添加了这样的内容:

public class CartController : Controller
    {
        private IProductRepository repository;

        public CartController(IProductRepository repo)
        {
            repository = repo;
        }

        public ViewResult Index(string returnUrl)
        {
            return View("Index", "~/Views/Shared/_Layout.cshtml", new CartIndexViewModel
            {
                Cart = GetCart(),
                ReturnUrl = returnUrl
            });
        }

        public RedirectToRouteResult AddToCart(int productId, string returnUrl)
        {
            Product product = repository.Products
            .FirstOrDefault(p => p.ProductID == productId);

            if (product != null)
            {
                GetCart().AddItem(product, 1);
            }
            return RedirectToAction("Index", new { returnUrl });
        }
        private Cart GetCart()
        {
            Cart cart = (Cart)Session["Cart"];
            if (cart == null)
            {
                cart = new Cart();
                Session["Cart"] = cart;
            }
            return cart;
        }
       }
     }

然后我添加到我的Cart->索引操作视图(右键单击>添加视图),如下所示:

@model SportsStore.WebUI.Models.CartIndexViewModel
@{
ViewBag.Title = "Sklep sportowy: Twój koszyk";
}

<h2>Twój koszyk</h2>
<table width="90%" align="center">
    <thead>
        <tr>
            <th align="center">Ilość</th>
            <th align="left">Produkt</th>
            <th align="right">Cena</th>
            <th align="right">Wartość</th>
        </tr>
    </thead>
    <tbody>
        @foreach(var line in Model.Cart.Lines) {
        <tr>
            <td align="center">@line.Quantity</td>
            <td align="left">@line.Product.Name</td>
            <td align="right">@line.Product.Price.ToString("c")</td>
            <td align="right">@((line.Quantity * line.Product.Price).ToString("c"))</td>
        </tr>
        }
    </tbody>
    <tfoot>
        <tr>
            <td colspan="3" align="right">Razem:</td>
            <td align="right">
                @Model.Cart.ComputeTotalValue().ToString("c")
            </td>
        </tr>
    </tfoot>
</table>
<p align="center" class="actionButtons">
    <a href="@Model.ReturnUrl">Kontynuuj zakupy</a>
</p>

在页面上的“我的产品摘要”中,我有一个按钮,可将产品添加到购物车,然后重定向到此localhost:port/Cart/Index页面。这是导航按钮:

@model SportsStore.Domain.Entities.Product

    <div class="item">
         <h3>@Model.Name</h3>
         @Model.Description

         @using(Html.BeginForm("AddToCart", "Cart")) {
            @Html.HiddenFor(x => x.ProductID)
            @Html.Hidden("returnUrl", Request.Url.PathAndQuery)
            <input type="submit" value="+ Dodaj do koszyka" />
         }
         <h4>@Model.Price.ToString("c")</h4>
    </div>

问题在于Cart工作得非常好,但它的视图没有嵌入主布局/Shared/_Layout.cshtml中。它只是作为单独的页面显示,不包括任何HTML标题或正文,只是网站的内容部分。

我发现的同一个例子的github项目与主Visual Studio项目的完全相同。 https://github.com/akatakritos/SportsStore

我检查过图书代码清单,但找不到任何错误。为什么它不能正确显示为主要布局的一部分?但是在另外看来!

请求任何帮助。

编辑:

我有Views / Shared / _ViewStart.cshtml

@{
    Layout = "~/Views/Shared/_Layout.cshtml";
}

1 个答案:

答案 0 :(得分:3)

将_ViewStart.cshtml移至Views/_ViewStart.cshtml(而非Views / Shared /)。 MVC不在共享文件夹中查找它。