我在使用 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 />
}
此视图调用与我的模型类关联的另一个视图。
如果您需要更多代码,我会发布它。而且,请原谅我的英语,我不是母语人士。
弗洛朗