我无法绑定包含对象列表的模型。当我尝试将数据从控制器传递到视图时没有问题,但是当我想要发回数据时,我得到一条消息,表明该方法不存在。
我正在使用ajax调用,并且我将$ form.serialize()作为数据,并且可以在fiddler中查看包含所有数据的列表,但我对绑定没有运气。
模型是:
public class Single
{
public int Id {get;set;}
public string Name {get;set;}
public List<SimpleDropdown> dddl {get;set;}
public int SelectedEmp {get;set;}
}
public class MainModel
{
public List<Single> main_model_list {get;set;}
}
在我的控制器中,现在的方法是:
[HttpPost]
public string SaveModel(MainModel model)
{
return "";
}
此方法不会被调用,但是当我删除该调用的参数时。所以我确定绑定不起作用。我有一个更复杂的模型,但我尽可能简化它,仍然无法让它工作。
所以我的问题是如何测试这个以查看问题是什么?
编辑:
我目前没有代码,但该代码功能正常,因为我在项目的其他地方使用它。它是这样的:
$("#form").submit(function( ) {
$.ajax({
url: "/Controller/SaveModel",
type: "POST",
data: $(this).serialize()
});
});
表单看起来像这样:
@using (Html.BeginForm("SaveModel", "Home", FormMethod.Post, new { id = "form" }))
{
@for (var z = 0; z < ViewBag.groupes.Length; z++)
{
<div style="border-left: 1px solid black">
<h1>@ViewBag.groupes[z]</h1>
</div>
}
@for (var i = 0; i < Model.main_model_list.Count; i++)
{
<div>@Html.LabelFor(x => x.main_model_list[i].Id)</div>
<div>@Html.LabelFor(x => x.main_model_list[i].Name)</div>
<div style="float: left">@Html.DropDownListFor(x => main_model_list[i].SelectedEmp, new SelectList(main_model_list[i].dddl, "Id", "Value", main_model_list[i].SelectedEmp), new { @class = "preferences_dd_lists" })</div>
}
}
答案 0 :(得分:2)
您可以尝试使用
@using(Ajax.BeginForm("SaveModel", "controller", formMethod.Post, new AjaxOptions{ }))
{
// your form
}
不要忘记使用jquery.unobtrusive-ajax.js
使用Ajax.BeginForm,您可以删除该jQuery代码块以发送您的表单,并使您的表单直接在Action中绑定。
答案 1 :(得分:2)
您可以更改代码。
data:{ model:$(this).serialize()}
因为您没有给出参数名称,所以mvc模型绑定不起作用。
答案 2 :(得分:1)
尝试以下方法:
$("#form").submit(function( ) {
$.ajax({
url: "/Controller/SaveModel",
contentType: "application/json",
type: "POST",
data: $(this).serialize()
});
});
答案 3 :(得分:1)
绑定绑定器时正在查找未由您提供的值Id。 所以在视图页面的循环中添加它
@Html.HiddenFor(x => x.main_model_list[i].Id)
答案 4 :(得分:1)
我确定您错误地编写了html,您希望将一个集合发布到控制器,但您的数据表单与您的模型不匹配。
我认为如果您想将一个集合发送到您的控制器,您必须修改您的html表单 那样:
<input type="hidden" name="main_model_list[0].Id" value="1 />
<input type="hidden" name="main_model_list[0].Name" value="xyz" />
<select name="main_model_list[0].SelectedEmp">
.....
</select>
<input type="hidden" name="main_model_list[1].Id" value="1 />
<input type="hidden" name="main_model_list[1].Name" value="xyz" />
<select name="main_model_list[1].SelectedEmp>
.....
</select>
.................
我认为你应该从单一模型中删除List dddl。
答案 5 :(得分:1)
我已执行下面的代码,它工作正常。声明模型如下
public class SimpleDropdown
{
//
// Summary:
// Gets or sets the text of the selected item.
//
// Returns:
// The text.
public string Text { get; set; }
//
// Summary:
// Gets or sets the value of the selected item.
//
// Returns:
// The value.
public string Value { get; set; }
}
public class SingleEntity
{
public int Id { get; set; }
public string Name { get; set; }
public List<SimpleDropdown> dddl { get; set; }
public int SelectedEmp { get; set; }
}
public class MainModel
{
public List<SingleEntity> main_model_list { get; set; }
}
Controller操作方法如下
public class BasicController : Controller
{
public ActionResult GetModel()
{
MainModel mainModel = new MainModel();
List<SimpleDropdown> dropdownlist = new List<SimpleDropdown>();
List<SingleEntity> selist = new List<SingleEntity>();
for (int j = 1; j < 10; j++)
{
dropdownlist.Add(new SimpleDropdown { Text = "Text" + j, Value = j.ToString() });
}
SingleEntity se;
for (int i = 0; i < 10; i++)
{
se = new SingleEntity();
se.Id = i;
se.Name = "Name" + i;
se.SelectedEmp = i;
se.dddl = dropdownlist;
mainModel.main_model_list = selist;
mainModel.main_model_list.Add(se);
}
return View(mainModel);
}
[HttpPost]
public ActionResult SaveModel(MainModel mainModelasdfafsf)
{
// do stuff here... please not only selectedEmp only will get reflected but not the property ddl since its again another list
return View("GetModel");
}
}
最后,View应该是这样的
@model MvcDemo.Models.MainModel
@using (Html.BeginForm("SaveModel", "Basic", FormMethod.Post, new { id = "formModel" }))
{
for (var i = 0; i < Model.main_model_list.Count; i++)
{
<div>@Html.TextBoxFor(x => Model.main_model_list[i].Id)</div>
<div>@Html.TextBoxFor(x => Model.main_model_list[i].Name)</div>
<div>
@Html.TextBoxFor(x => Model.main_model_list[i].SelectedEmp)
</div>
<div style="float: left">
@Html.DropDownListFor(x => Model.main_model_list[i].SelectedEmp, new SelectList(Model.main_model_list[i].dddl, "Text", "Value", Model.main_model_list[i].SelectedEmp), new { @class = "preferences_dd_lists" })
</div>
}
<input type="button" value="Save" id="btnsave" name="btnsave" />
}
@section Scripts{
<script type="text/javascript">
$(document).ready(function () {
$('#btnsave').click(function () {
$.ajax({
async: false,
cache: false,
data: $('#formModel').serialize(),
url: '@Url.Action("SaveModel", "Basic")',
type: "POST",
dataType: "text/html",
success: function () {
alert('success');
},
error: function (errorThrown) {
debugger;
alert('something went wrong!!!');
}
});
});
});
</script>
}
以上全部确保所有脚本文件都已加载 Check this Link where Model binding will not work for Lable and LableFor