0

首先,这与Asp.Net MVC 3 应用程序中复杂子对象的集合非常相似?但是那里的答案都没有真正为我完全回答这个问题。

我有一个包含 PollItem 模型列表的 Poll 模型。我的观点是创建新的民意调查,因此传递给视图的模型是完全空的。所以有基本投票信息的文本框,然后是用户可以添加/删除任意数量的投票项目的下部。我需要以某种方式将这些投票项文本框绑定到 PollItems 列表。

@using (Html.BeginForm("CreatePoll", "Polls", FormMethod.Post, new { enctype = "multipart/form-data", id = "createPollForm", @class = "cmxform group" }))
    {
        @Html.TextBoxFor(x => x.Question, new { @class = "title-input full-width prominent", placeholder = "Enter Question Here" })
        <ul class="poll-info">
            <li>
                <p><label>Poll Opens</label></p>
                @Html.TextBoxFor(x => x.OpeningDate, new { id = "openingDatePicker" })
            </li>
            <li>
                <p><label>Poll Closes</label></p>
                @Html.TextBoxFor(x => x.ClosingDate, new { id = "closingDatePicker" })
            </li>
        </ul>
        <section class="description">
            <p><label>Description</label></p>
            @Html.TextAreaFor(x => x.Description, new { @class = "full-width", placeholder = "Enter a more detailed description of the poll here." })
        </section>

        <a class="button"><i class="ico"></i> Attach an object</a>

        <section class="module-questions">
            <ul>
            </ul>
            <span class="button link" onclick="addAnswer()"><i class="ico"></i> Add Answer</span>
        </section>
    }

addAnswer() 函数将列表项中的新文本框附加到将绑定到 PollItem.Description 的无序列表中,这些文本框保存在列表 Poll.PollItems 中。除了描述之外,PollItem 中可能还会有一些其他元素。

我什至不知道从哪里开始,因为我不知道如何绑定动态添加和删除的文本框。

4

2 回答 2

0

我建议您查看以下博客文章,该文章说明了如何实现这一目标。它演示了自定义Html.BeginCollectionItem助手的用法,该助手负责为动态添加和删除的输入字段生成正确的名称。

于 2012-06-03T08:23:36.800 回答