目前我有一个将PDF加载到HTML页面的方法。从数据库中检索数据后动态创建PDF。现在,我想要做的是,在加载PDF的视图之前,我想显示一个页面,让用户知道正在加载信息。
ActionParams:
@using (Html.BeginForm("PreLoaderView", "Report", FormMethod.Post, new {
@target = "_blank"
}))
控制器:
public ActionResult PreLoaderView(TestViewModel viewModel) {
return View(viewModel);
}
public ActionResult SolicitorActionReport_Load(TestViewModel viewModel) {
var cultivationModel = new CultivationModel(viewModel, ConstituentRepository, CampaignRepository);
var cultivationData = cultivationModel.GetCultivationActivityData();
var reportParamModel = new List<ReportParamModel>
{
new ReportParamModel() {AgencyName = SelectedUserAgency.AgencyName, StartDate = viewModel.StartDate, EndDate = viewModel.EndDate}
};
return FileContentPdf("Constituent", "CultivationActivityManagement", cultivationData, reportParamModel, new List<FundraisingAppealMassSummary>(), new List<FundraisingAppealPortfolioSummary>());
return Content(viewModel.SolicitorType);
}
PreLoaderView:
@model Report.SolicitorActionParamsViewModel
@{
ViewBag.Title = "Cultivation Activity";
}
<script type="text/javascript">
$(function () {
$.ajax({
url: '@Url.Action("SolicitorActionReport_Load", "Report", @Model)',
complete: function() {
$('#progress').hide();
},
error: function() {
alert('oops');
}
});
});
</script>
<div align="center">
<img id="progress" src="~/Content/images/loading.GIF">
<div id="result">
<embed width="100%" height="800px" src="http://localhost/YP/Report/SolicitorActionReport_Load"type="application/pdf">
</div>
</div>
因此,在PreLoaderView中,我想将@Model
传递回控制器,以便与SolicitorActionReport_Load()
一起使用。这可能吗?
答案 0 :(得分:0)
这就是你想要将模型序列化为Javascript所以它可以传递给ajax调用:
<script type="text/javascript">
$(function () {
$.ajax({
url: '@Url.Action("SolicitorActionReport_Load", "Report",
@Html.Raw(new JavaScriptSerializer().Serialize(Model)))',
complete: function() {
$('#progress').hide();
},
error: function() {
alert('oops');
}
});
});
</script>
答案 1 :(得分:0)
你不应该在经典的MVC应用程序中这样做。您应该在控制器中创建并填充模型一次,然后在一次通过中将其提供给视图,然后忘记它直到下一次往返服务器。你不应该来回控制器。
您要做的事情应该是通过iframe或来自客户端的后续ajax调用来完成。