3

当我在按下提交按钮后收到帖子时,我遇到了 MVC4 和编辑器模板的问题。这是我的模型:

public class Form
{
    public Form()
    {
        this.Rows = new List<Row>();
    }

    public List<Row> Rows { get; set; }

    public int Id { get; set; }
}

public class Row
{
    public Row()
    {
        this.Label = string.Empty;
        this.Type = string.Empty;
    }

    public string Label { get; set; }

    public string Type { get; set; }

    public int Id { get; set; }
}

public class SimpleRow : Row
{
    public SimpleRow()
    {
        this.Value = string.Empty;
    }

    public string Value { get; set; }
}

public class DropDownRow : Row
{
    public DropDownRow()
    {
        this.Content = new List<ContentDropDown>();
    }

    public List<ContentDropDown> Content { get; set; }
}

public class ContentDropDown
{
    public ContentDropDown()
    {
        this.Title = string.Empty;
        this.Selected = false;
    }

    public string Title { get; set; }

    public bool Selected { get; set; }

    public int Id { get; set; }
}

这是我的控制器:

public class FormController : Controller
{
    [Authorize]
    public ActionResult Index()
    {
        return this.View();
    }

    [HttpPost]
    [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; // Here, The parameter updatedForm have just is first row filled with empty strings and the other rows null

        return this.View("Index");
    }
}

我的 Index.cshtml :

@model Utils.FormObject.Form
@{
    ViewBag.Title = "Index";

}
@using (Html.BeginForm("EmailForm", "Form", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
    <fieldset>
        <p>
            @for (int i = 0; i < Model.Rows.Count; i++)
            {
                @Html.HiddenFor(x => x.Id)
                @Html.EditorFor(x => x.Rows[i])    
            }
        </p>
        <p>
            <input type="submit" value="Save" />
        </p>
    </fieldset>
    <br />
}

我的其他人在名为 EditorTemplates 的子文件夹中查看:行:

@model Utils.FormObject.Row
@{
    ViewBag.Title = "Row";
}
@Html.HiddenFor(x => x.Id)
@Html.EditorFor(x => x)

简单行:

@model Utils.FormObject.SimpleRow

@{
    if (Model.Type.Equals("String"))
    {
        <br />
        @Html.HiddenFor(x => x.Id)
        @Html.DisplayFor(modelItem => modelItem.Label)
        @Html.EditorFor(modelItem => modelItem.Value)
    }
    <br/>
}

下拉行:

@model Utils.FormObject.DropDownRow
@{
    ViewBag.Title = "DropDownRow";
}
@* @Html.DropDownListFor(x => x, new SelectList(Model.Content, "Title", "Title"))*@
@{
    @Html.HiddenFor(x => x.Id)
    @Html.LabelFor(item => item.Label)
    var list = new List<SelectListItem> { new SelectListItem { Value = string.Empty, Text = "--please select--", Selected = false } };
    foreach (var row in Model.Content)
    {
        list.Add(new SelectListItem { Text = row.Title, Selected = row.Selected });
    }
    @Html.DropDownListFor(x => x, list)
}

和 ContentDropDownRow :

@model Utils.FormObject.ContentDropDown
@{
    ViewBag.Title = "ContentDropDown";
}
@Html.HiddenFor(x => x.Id)
@Html.LabelFor(x => x.Title)

我的表单显示得差不多(实际上下拉列表的标签显示的是“标签”而不是属性的标签......)。问题是当我按下提交按钮时,回发值“updatedForm”未填写。第一行 Row[0] 的标签由空字符串填充,其他行为空。我试过这个,但我没有设法让它工作。

我在这里有点迷路,我不明白为什么它拒绝工作。

普克

4

2 回答 2

3

您似乎正在使用编辑器模板来呈现您的 Row 对象,但我认为您没有正确使用它。如果您有单个 Row 对象的编辑器模板,您只需通过将集合传递给模板来呈现 Index.cshtml 中的 Row 集合。这是您的行的编辑器模板:

@model Utils.FormObject.Row
@{
    ViewBag.Title = "Row";
}
@Html.HiddenFor(x => x.Id)
@Html.EditorFor(x => x.Label)
@Html.EditorFor(x => x.Type)

从 Index.cshtml 视图渲染 Row 集合 - 无需循环,因为编辑器模板将自动渲染集合中的每一行并正确命名它们:

@model Utils.FormObject.Form
@{
    ViewBag.Title = "Index";
}
<fieldset>
    <p>
        @Html.HiddenFor(x => x.Id)
        @Html.EditorFor(x => x.Rows)    
    </p>
    <p>
        <input type="submit" value="Save" />
    </p>
</fieldset>

这应该会创建如下所示的字段,这些字段将被正确命名并绑定为 Form 对象的一部分,然后将其发布回控制器:

Rows[0].Id
Rows[0].Label
Rows[0].Type
Rows[1].Id
Rows[1].Label
Rows[1].Type

看我对这个问题的回答:

从多个局部视图传递值

在这里对编辑器模板进行小写:

codenodes.wordpress.com - MVC3 编辑器模板

于 2012-07-20T11:54:31.507 回答
1

谢谢,很抱歉在两个月后回答这个问题,但迟到总比没有好!

我试过这个,但它没有像我想要的那样渲染。这种方式将属性名称作为标签,将属性值作为可编辑字段。但我之前想要几次治疗。我使用 HiddenFor 命令将用户输入绑定到我的对象,如下所示:

<p>
    @Html.HiddenFor(x => x.ID)
    <h3> @Html.DisplayFor(x => x.Title)</h3>
    @Html.HiddenFor(x => x.Title)
</p>

因为,在这个例子中,我不希望“标题”是可编辑的。我不确定这是应该使用的方式,但它是这样工作的。

于 2012-09-17T08:37:06.190 回答