我有一个问题是从我的视图中将参数从MVC4返回到我的控制器。
这是我模特的课程(抱歉所有这些代码,我想先发布一张图片,但我太新手了,不允许这样做):
public class Form
{
public Form()
{
this.Rows = new List<Row>();
}
public List<Row> Rows { get; set; }
}
public abstract class Row
{
protected Row()
{
this.Label = string.Empty;
this.Type = string.Empty;
}
public string Label { get; set; }
public string Type { get; set; }
}
public class SimpleRow : Row
{
public SimpleRow()
{
this.Value = string.Empty;
}
public string Value { get; set; }
}
public class CheckRow : Row
{
public CheckRow()
{
this.CheckedItems = new List<CheckedItem>();
this.Id = 0;
}
public List<CheckedItem> CheckedItems { get; set; }
public int Id { get; set; }
}
public class CheckedItem
{
public CheckedItem()
{
this.Title = string.Empty;
this.Checked = false;
}
public string Title { get; set; }
public bool Checked { get; set; }
}
我设法从输入xml文件构建我的视图,该文件是我的模型的序列化。 但我的问题是,当我在视图中更改某个值并按下保存按钮时,我在控制器功能中返回一个空参数。
控制器:
public class FormController : Controller
{
// GET: /Form/
#region Public Methods and Operators
[Authorize]
public ActionResult Index(HttpPostedFileBase file)
{
this.ViewBag.Title = "Formulaire Collaborateur";
if (file != null && file.ContentLength > 0)
{
return this.View(SerialisationHelper.DeserializeFromStream<Form>(file.InputStream));
}
return this.View();
}
[HttpPost]
[Authorize]
public ActionResult EmailForm(Form updatedForm)
{
Form f = updatedForm; // Empty instance of Form
return this.View("Index");
}
#endregion
}
我的观点:
@model Form
@{
ViewBag.Title = "Index";
}
@using (Html.BeginForm("EmailForm", "Form", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<fieldset>
@foreach (var row in Model.Rows)
{
@Html.Partial("Row", row)
}
<p>
<input type="submit" value="Save" />
</p>
</fieldset>
<br />
}
此视图调用与我的模型类关联的其他视图。
如果您需要更多代码,我会发布。 请原谅我的英语,我不是母语人士。
Florent的
答案 0 :(得分:1)
从您的代码中我不清楚你在@Html.Partial("Row", row)
做了什么但是无论如何你应该为这个Row
类型设置EditorTemplate然后只使用它:
@foreach (var row in Model.Rows)
{
@Html.EditorFor(m=>row)
}