我正在使用剃须刀引擎来构建我的页面。我想从我的数据库中选择项目并让它异步显示。每次单击该链接时,它都会显示来自数据库的正确结果,但会将部分视图加载到另一个页面而不是同一页面中。LoadingElementId="progress" 也不显示
我的索引页面中的相关代码
@Ajax.ActionLink("Click to view product List","Reviewed", new AjaxOptions
{
UpdateTargetId = "_LatestReview",
InsertionMode = InsertionMode.Replace,
HttpMethod="GET",
LoadingElementId="progress"
})
<div id="_LatestReview">
</div>
Home 控制器的局部视图
public PartialViewResult Reviewed()
{
Thread.Sleep(10000);
var reviewed = ctx.Items.ToList();
return PartialView("_LatestReview",reviewed);
}
视图的局部视图
@model IEnumerable<BigDream.Item>
<div >
<table>
<tr>
<th>
Item_ID
</th>
<th>
Item_name
</th>
<th>
Item_Value
</th>
<th>
image_url
</th>
<th>
Item_Description
</th>
<th>
Category_ID
</th>
<th></th>
</tr>
@foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Item_ID)
</td>
<td>
@Html.DisplayFor(modelItem => item.Item_name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Item_Value)
</td>
<td>
@Html.DisplayFor(modelItem => item.image_url)
</td>
<td>
@Html.DisplayFor(modelItem => item.Item_Description)
</td>
<td>
@Html.DisplayFor(modelItem => item.Category_ID)
</td>
</tr>
}
我觉得这个问题与页面生命周期有关,我不知道该怎么做。有人可以帮我解决这个问题吗