1

我在使用 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 />
}

此视图调用与我的模型类关联的另一个视图。

如果您需要更多代码,我会发布它。而且,请原谅我的英语,我不是母语人士。

弗洛朗

4

1 回答 1

1

从您的代码中不清楚您在做什么@Html.Partial("Row", row)但无论如何您应该为这种类型制作一个EditorTemplateRow然后使用它:

@foreach (var row in Model.Rows)
{
    @Html.EditorFor(m=>row)
}
于 2012-06-27T14:39:10.613 回答