我是靠谱客的博主 任性水壶,最近开发中收集的这篇文章主要介绍mvc5 html.beginform,c# – 在部分视图MVC5之间传递视图模型Services,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

我有一个主视图和两个部分视图.我需要能够使用我的第一个局部视图中的值填充viewmodel,并在单击按钮时将viewmodel传递给第二个局部视图.该按钮位于第二个局部视图中.我已经写了一个

javascript函数来做这个,但是当我检查控制器方法时,viewmodel是空的.正如您在下面的屏幕截图中看到的那样,服务框是第二个局部视图

第一部分视图

vyr6o.png

第二部分观点

@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所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(68)

评论列表共有 0 条评论

立即
投稿
返回
顶部