我想将模型传递给控制器的Post方法。调用方法时,它显示内容的空值和0的Id。理想情况下,它应该包含它显示的模型的值。
查看:
@model MvcApplication4.Models.WorldModel
@{
ViewBag.Title = "Information";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@using (Html.BeginForm("Information", "World", FormMethod.Post))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<br />
@Html.DisplayFor(model => model.Id)
<br />
@Html.DisplayFor(model => model.Content)
<br />
<input type="submit" value="Next" />
}
控制器:点击提交按钮时调用的方法。
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Information(WorldModel worldModel)
{
CandidateSession cs = (CandidateSession)Session["Can"];
var can = cs.Candidates.Where(x => x.IsNameDispalyed == false);
if (can.Count() > 0)
{
var can1 = can.First();
can1.IsNameDispalyed = true;
Session["Can"] = cs;
return View(new WorldModel() { Id = can1.Id, Content = can1.Name });
}
return View(new WorldModel());
}
型号:
public class WorldModel
{
public int Id { get; set; }
public string Content { get; set; }
}
答案 0 :(得分:4)
您应该添加包含值的隐藏输入:
@Html.HiddenFor(model => model.Id)
@Html.HiddenFor(model => model.Content)
这是因为模型绑定器将搜索输入(如文本框或隐藏字段)以获取值并将其与模型属性(基于输入名称)相关联。没有使用DisplayFor
创建输入,因此当您提交表单时,模型活页夹无法找到您的值。
答案 1 :(得分:3)
我认为@Html.DisplayFor
值未提交。
尝试为@Html.HiddenFor
添加相同的值。
答案 2 :(得分:0)
您可以使用@Html.Hidden('#IdComponent')
中的值来将.cshtml
表单中的值传递给控制器,以及:
在.cshtml中: 在页面中有:
@model Owj_SDK.Models.Service.Ticket.Ticket
@Html.Hidden("accntid")
体内有:
<a OnClick="testfnc('@Model.accntid')"> </a>
.js
文件中的具有:
function referralToColleagueTicketModal(accntide) {
debugger
$.get('/Ticket/referralToColleagueTicketModal/', { 'accntid': accntide}, function (html) {
$('#dvtckdelmodal').html(html);
$('#dvtckdelmodal').modal('show');
$('#accntid').val(accntide);
});
}