概述
我有一个主视图和两个部分视图.我需要能够使用我的第一个局部视图中的值填充viewmodel,并在单击按钮时将viewmodel传递给第二个局部视图.该按钮位于第二个局部视图中.我已经写了一个
javascript函数来做这个,但是当我检查控制器方法时,viewmodel是空的.正如您在下面的屏幕截图中看到的那样,服务框是第二个局部视图
第一部分视图
第二部分观点
@model CC.GRP.MCRequest.ViewModels.NewRequestViewModel
Services
@using (Html.BeginForm())
{
@Html.LabelFor(model => model.ProjectName, htmlAttributes: new { @class = "control-label col-md-5" })
@Html.EditorFor(model => model.ProjectName, new { htmlAttributes = new { @class = "form-control", style = "width:100%" } })
}
function mapInit() {
$.ajax({
url: '@Url.Action("Service", "request")',
// datatype: "json",
data: $('form').serialize(), // update this
type: "POST",
// contentType: 'application/json; charset=utf-8'
});
}
调节器
[HttpPost]
public PartialViewResult Service(NewRequestViewModel model)
{
return PartialView("_NewService", model);
}
最后
以上就是任性水壶为你收集整理的mvc5 html.beginform,c# – 在部分视图MVC5之间传递视图模型Services的全部内容,希望文章能够帮你解决mvc5 html.beginform,c# – 在部分视图MVC5之间传递视图模型Services所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复