我有一个索引页:
@model AlfoncinaMVC.Models.VentaIndexViewModel
@{
ViewBag.Title = "Ventas";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<script>
var d = 1;
setInterval(function () {
d++;
$('#testLabe').text(d);
$.ajax("Ventas");
}, 1000 * 1 * 1);
</script>
<div id="ventasTable">
@{ Html.RenderPartial("_VentasTable"); }
@*@Html.Partial("_VentasTable")*@
</div>
<label id="testLabe"></label>
使用局部视图(_VentasTable):
@model AlfoncinaMVC.Models.VentaIndexViewModel
<table>
<thead>
</thead>
<tbody>
@foreach (var item in @Model.Ventas)
{
<tr>
<td>
@item.nombreArticulo
</td>
</tr>
}
</tbody>
</table>
使用此控制器:
public ActionResult Ventas()
{
var db = new AlfonsinaEntities();
var ventas = db.Set<Venta>();
var vm = new VentaIndexViewModel
{
Ventas = ventas.Select(x => new VentaViewModel
{
nombreArticulo = x.NombreArticulo
}).ToList()
};
if (Request.IsAjaxRequest())
{
return PartialView("_VentasTable", vm);
}
return View("Ventas", vm);
}
在调用Html.RenderPartial之后,我无法在局部视图(_VentasTable)中刷新数据(不在HTML.Partial中,请注意我的代码中有注释。) 在我的局部视图上放置一个断点后,我看到数据是从数据库查询中改变的,但是这个数据在部分视图中没有被替换。有什么帮助吗?
答案 0 :(得分:7)
正如@StephenMuecke所说 - “你需要将返回的数据添加到DOM”:
$.ajax({
type: "GET",
url: '@Url.Action("Ventas", "ControllerName")',
async: true,
cache: false,
dataType: "html",
success: function (data, textStatus, jqXHR) {
$("#ventasTable").html(data);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(textStatus + " - " + errorThrown);
}
});