我正在尝试解决此问题,我在部分视图路径url上遇到错误404:localhost:49259 / Panier / TableContent。此TableContent位于Panier文件夹下。 我无法弄清楚网址有什么问题。
TableContent是否应该在此文件夹ViewModels下,因为它正在使用此模型 @model Tp1WebStore3.ViewModels.ShoppingCartViewModel?
由于
来自Panier的TableContent.cshtml(部分视图)
@model Tp1WebStore3.ViewModels.ShoppingCartViewModel
@{
ViewBag.Title = "Table Content";
}
<a href="#" class="TableContent">
<table>
<tr>
<th>
Produit
</th>
<th>
Prix (unitaire)
</th>
<th>
Quantite
</th>
<th></th>
</tr>
@foreach (var item in Model.CartItems)
{
<tr id="row-@item.ProduitId">
<td>
@Html.ActionLink(item.Produit.Description, "Details", "Produit", new { id =
item.ProduitId }, null)
</td>
<td>
@item.Produit.Prix
</td>
<td id="item-count-@item.PanierId">
@item.Quantite
</td>
<td>
<a href="#" class="RemoveLink" data-id="@item.PanierId"> Enlever du panier
</a>
</td>
</tr>
}
<tr>
<td>
Total
</td>
<td></td>
<td></td>
<td id="cart-total">
@Model.CartTotal
</td>
</tr>
</table>
</a>
来自Panier的Index.cshtml
@model Tp1WebStore3.ViewModels.ShoppingCartViewModel
@{
ViewBag.Title = "Shopping Cart";
}
<script src="/Scripts/jquery-1.8.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('.RemoveLink').click(function () {
$.ajax({
url: '/Panier/RemoveFromCart',
data: { id: $(this).data('id') },
type: 'POST',
cache: false,
success: function (result) {
$('#row-' + result.DeleteId).remove();
$('#row-' + result.DeleteId).fadeOut('slow');
$('#cart-status').text('Cart (' + result.CartCount + ')');
$('#update-message').text(result.Message);
$('#cart-total').text(result.CartTotal);
$.get("/Panier/TableContent").done(function (data) { <==error 404
$("#TableContent").html(data); });
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert("Status: " + textStatus); alert("Error: " + errorThrown);
}
});
return false;
});
});
</script>
<h3>
<em>Details</em> du panier:
</h3>
<p class="button">
@Html.ActionLink("Checkout >>", "AddressAndPayment", "Checkout")
</p>
<div id="update-message">
</div>
<div id="table-content">
@Html.Partial("TableContent") <=== partial view call
</div>
PanierController.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Tp1WebStore3.Models;
using Tp1WebStore3.ViewModels;
namespace Tp1WebStore3.Controllers
{
public class PanierController : Controller
{
//
// GET: /Panier/
Tp1WebStoreDBEntities dbProduit = new Tp1WebStoreDBEntities();
//
// GET: /ShoppingCart/
public ActionResult Index()
{
var cart = ShoppingCart.GetCart(this.HttpContext);
// Set up our ViewModel
var viewModel = new ShoppingCartViewModel
{
CartItems = cart.GetCartItems(),
CartTotal = cart.GetTotal()
};
// Return the view
return View(viewModel);
}
//
// GET: /Store/AddToCart/5
public ActionResult AddToCart(int id)
{
// Retrieve the album from the database
var addedProduit = dbProduit.Produits
.Single(produit => produit.ProduitId == id);
// Add it to the shopping cart
var cart = ShoppingCart.GetCart(this.HttpContext);
cart.AddToCart(addedProduit);
// Go back to the main store page for more shopping
return RedirectToAction("Index");
}
//
// AJAX: /ShoppingCart/RemoveFromCart/5
[HttpPost]
public ActionResult RemoveFromCart(int id)
{
// Remove the item from the cart
var cart = ShoppingCart.GetCart(this.HttpContext);
// Get the name of the album to display confirmation
string produitDescription = dbProduit.Paniers
.Single(item => item.PanierId == id).Produit.Description;
// Remove from cart
int itemCount = cart.RemoveFromCart(id);
// Display the confirmation message
var results = new ShoppingCartRemoveViewModel
{
Message = Server.HtmlEncode(produitDescription) +
" has been removed from your shopping cart.",
CartTotal = cart.GetTotal(),
CartCount = cart.GetCount(),
ItemCount = itemCount,
DeleteId = id
};
return Json(results);
/* return View("CartSummary"); */
}
//
// GET: /ShoppingCart/CartSummary
[ChildActionOnly]
public ActionResult CartSummary()
{
var cart = ShoppingCart.GetCart(this.HttpContext);
ViewData["CartCount"] = cart.GetCount();
return PartialView("CartSummary");
}
}
}
答案 0 :(得分:0)
您希望将部分视图保留在视图文件夹(而不是视图模型)中......特定的子目录取决于您,但我相信它将默认为共享。
我建议您在调用部分视图时指定更多网址,看看是否可以解决您的问题......
例如:
Html.Partial("~/Views/Shared/TableContent.cshtml")
更多信息:
Render partial from different folder (not shared)
好的,我发现我误解了这个问题,404是由脚本调用而不是文件底部的@ Html.Partial生成的。
我正在通过评论中的这个片段...
$.get("~/Views/Shared/TableContent").done(function (data) { $("#TableContent").html(data); });
我在这里看到两个问题......首先,您将要以不同的方式解决您的路径,因为&#34;〜&#34;运营商不会在javascript中提供帮助。在这种情况下,您可以使用@ url.Action(&#34; TableContent&#34;)来获取服务器上的实际URL并将其传递给您的get语句。
第二个问题是我认为TableContent只是一个没有相应操作的视图。这适用于使用Html.Partial进行内联呈现,但是服务器无法在该上下文之外呈现它。您将要添加相应的操作,并从您的ajax中调用它。
答案 1 :(得分:0)
您的控制器Panier
似乎没有一个名为TableContent
的方法,该方法应返回部分视图TableContent.cshtml
。
此外,当您引用网址时,请尝试在ajax / get调用中使用Url.Action:
url: '/Panier/RemoveFromCart',
应该是:
url: '@Url.Action("RemoveFromCart","Panier")',
答案 2 :(得分:0)
解决此问题的另一种方法是在Panier Controller中创建一个动作TableContent,它将调用部分视图TableContent。 TableContent.cshtml应与Index(即/ Views / Panier)
位于同一目录中public PartialViewResult TableContent()
{
return PartialView("TableContent");
}
然后您需要替换ajax调用中的一行
$.get("/Panier/TableContent")
成为
$.get('@Url.Action("TableContent", "Panier")')