2

複数のページがあるasp.netmvc2アプリケーションに登録ウィザードがあります。最初のページには、プロセスに関係する人の基本的なデータ形式が必要です。名、姓、住所のラベルが付いた3つのテキストボックスと、「別の人を追加」というテキストの付いた1つのチェックボックスが必要です。ユーザーがラジオボタンをクリックすると、新しいテキストボックスが新しいラジオボタンとともに表示されるため、同じフォームに複数の人を追加できます。理論的には、できるだけ多くの人を挿入できるはずです。すべてのフィールドは必須なので、ページ上部の検証の概要には、「2人目の名前を入力してください」などのように表示する必要があります。私はDTOクラスを持っています:

public class Person
{
     public string FullName { get; set; }
     public string LastName { get; set; }
     public string Address{ get; set; }
}

そして、このページのモデルはそうあるべきだList<Person>と思います。そして、javascript/jQueryを使って新しい人のためにhtmlを追加します。ここで私を助けてください、この動的ページをどのように検証する必要がありますか?[保存]ボタンと[戻る]ボタンを使用してこのウィザードを実行できます。また、ページ上のラジオボタンのクリックを解除できるはずです。その特定の人が消え、バリデーターがそれをキャッチしなくなります。ウィザード全体でサーバー側の検証(DataAnnotations)を使用していますが、クライアントの検証は使用しません。前もって感謝します。

アップデート:

もう少し助けが必要です。新しいプロパティでPersonクラスを拡張したい:

public int Percent { get; set; } 

の各Personsのすべてのパーセントの合計がIEnumerable<Person>100に等しい場合、送信時にサーバー検証が必要です。これとその方法のカスタム属性を作成できますか?私のモデルはジェネリックリストですが、適用できません[CustomAttribute]よね?
また、各入力の直後ではなく、ページの上部に検証の概要を表示する必要があります。私が置いた:<%:Html.ValidationSummary(false, "Please correct the following and resubmit the page:")%>人ごとに異なる検証メッセージを設定する方法はありますか?ありがとう

4

1 に答える 1

3

このタスクの実装に入る前に、StevenSandersonのASP.NETMVC2スタイルの可変長リストの編集を読むことを強くお勧めします。

準備?

これで、実装に取り​​掛かることができました。

まず、タスクのビューモデルを定義します。すでに持っているので、対応する検証ルールを定義するだけです。

public class Person
{
    [Required]
    public string FullName { get; set; }

    [Required]
    public string LastName { get; set; }

    [Required]
    public string Address{ get; set; }
}

このページのモデルはリストである必要があります

ええ、絶対に。

PersonsControllerそれでは、先に進んで、 :を作成しましょう。

public class PersonsController : Controller
{
    public ActionResult Index()
    {
        var model = new[] 
        {
            new Person()
        };
        return View(model);
    }

    [HttpPost]
    public ActionResult Index(IEnumerable<Person> persons)
    {
        if (!ModelState.IsValid)
        {
            return View(persons);
        }

        // To do: do whatever you want with the data
        // In this example I am simply dumping it to the output
        // but normally here you would update your database or whatever
        // and redirect to the next step of the wizard
        return Content(string.Join(Environment.NewLine, persons.Select(p => string.Format("name: {0} address: {1}", p.FullName, p.Address))));
    }

    public ActionResult BlankEditorRow()
    {
        return PartialView("_PersonEditorRow", new Person());
    }
}

それでは、ビューを定義しましょう(~/Views/Persons/Index.cshtml):

@model IEnumerable<Person>

@using (Html.BeginForm())
{
    <div id="editorRows">
        @foreach (var item in Model)
        {
            Html.RenderPartial("_PersonEditorRow", item);
        }
    </div>    

    @Html.ActionLink(
        "Add another person", 
        "BlankEditorRow", 
        null, 
        new { id = "addItem" }
    )

    <p>
        <button type="submit">Next step</button>
    </p>
}

<script type="text/javascript">
    $('#addItem').click(function () {
        $.ajax({
            url: this.href,
            cache: false,
            success: function (html) { $('#editorRows').append(html); }
        });
        return false;
    });

    $(document).delegate('a.deleteRow', 'click', function () {
        $(this).parents('div.editorRow:first').remove();
        return false;
    });
</script>

および対応する部分ビュー(~/Views/Persons/_PersonEditorRow.cshtml):

@model Person

<div class="editorRow">
    @using(Html.BeginCollectionItem("persons")) 
    {
        <div>
            @Html.LabelFor(x => x.FullName)
            @Html.EditorFor(x => x.FullName)
            @Html.ValidationMessageFor(x => x.FullName)
        </div>
        <div>
            @Html.LabelFor(x => x.LastName)
            @Html.EditorFor(x => x.LastName)
            @Html.ValidationMessageFor(x => x.LastName)
        </div>
        <div>
            @Html.LabelFor(x => x.Address)
            @Html.EditorFor(x => x.Address)
            @Html.ValidationMessageFor(x => x.Address)
        </div>

        <a href="#" class="deleteRow">delete</a>
    }
</div>

備考:Html.BeginCollectionItemここで使用されているヘルパーは、以前に私の回答でリンクしたSteven Sandersonのブログ投稿から引用したものであり、あなたはすでに読んでいてよく知っています。完全を期すためのソースコードは次のとおりです。

public static class HtmlPrefixScopeExtensions
{
    private const string idsToReuseKey = "__htmlPrefixScopeExtensions_IdsToReuse_";

    public static IDisposable BeginCollectionItem(this HtmlHelper html, string collectionName)
    {
        var idsToReuse = GetIdsToReuse(html.ViewContext.HttpContext, collectionName);
        string itemIndex = idsToReuse.Count > 0 ? idsToReuse.Dequeue() : Guid.NewGuid().ToString();

        // autocomplete="off" is needed to work around a very annoying Chrome behaviour whereby it reuses old values after the user clicks "Back", which causes the xyz.index and xyz[...] values to get out of sync.
        html.ViewContext.Writer.WriteLine(string.Format("<input type=\"hidden\" name=\"{0}.index\" autocomplete=\"off\" value=\"{1}\" />", collectionName, html.Encode(itemIndex)));

        return BeginHtmlFieldPrefixScope(html, string.Format("{0}[{1}]", collectionName, itemIndex));
    }

    public static IDisposable BeginHtmlFieldPrefixScope(this HtmlHelper html, string htmlFieldPrefix)
    {
        return new HtmlFieldPrefixScope(html.ViewData.TemplateInfo, htmlFieldPrefix);
    }

    private static Queue<string> GetIdsToReuse(HttpContextBase httpContext, string collectionName)
    {
        // We need to use the same sequence of IDs following a server-side validation failure,  
        // otherwise the framework won't render the validation error messages next to each item.
        string key = idsToReuseKey + collectionName;
        var queue = (Queue<string>)httpContext.Items[key];
        if (queue == null)
        {
            httpContext.Items[key] = queue = new Queue<string>();
            var previouslyUsedIds = httpContext.Request[collectionName + ".index"];
            if (!string.IsNullOrEmpty(previouslyUsedIds))
                foreach (string previouslyUsedId in previouslyUsedIds.Split(','))
                    queue.Enqueue(previouslyUsedId);
        }
        return queue;
    }

    private class HtmlFieldPrefixScope : IDisposable
    {
        private readonly TemplateInfo templateInfo;
        private readonly string previousHtmlFieldPrefix;

        public HtmlFieldPrefixScope(TemplateInfo templateInfo, string htmlFieldPrefix)
        {
            this.templateInfo = templateInfo;

            previousHtmlFieldPrefix = templateInfo.HtmlFieldPrefix;
            templateInfo.HtmlFieldPrefix = htmlFieldPrefix;
        }

        public void Dispose()
        {
            templateInfo.HtmlFieldPrefix = previousHtmlFieldPrefix;
        }
    }
}

アップデート:

残念ながら、あなたの質問が。でタグ付けされていることに気づきましたasp.net-mvc-2。ですから、私のRazorの見解はあなたのケースには当てはまらないと思います。それでも、他のすべては同じように機能するはずです。WebFormsビューエンジンを使用するようにビューを更新するだけです。

これが~/Views/Persons/Index.aspx

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<Person>>" %>
<% using (Html.BeginForm()) { %>
    <div id="editorRows">
        <% foreach (var item in Model) { %>
            <% Html.RenderPartial("_PersonEditorRow", item); %>
        <% } %>
    </div>    

    <%= Html.ActionLink(
        "Add another person", 
        "BlankEditorRow", 
        null, 
        new { id = "addItem" }
    ) %>

    <p>
        <button type="submit">Next step</button>
    </p>
<% } %>

<script type="text/javascript">
    $('#addItem').click(function () {
        $.ajax({
            url: this.href,
            cache: false,
            success: function (html) { $('#editorRows').append(html); }
        });
        return false;
    });

    $(document).delegate('a.deleteRow', 'click', function () {
        $(this).parents('div.editorRow:first').remove();
        return false;
    });
</script>

そして最後に(~/Views/Persons/_PersonEditorRow.ascx)部分的:

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Person>" %>
<div class="editorRow">
    <% using(Html.BeginCollectionItem("persons")) { %>
        <div>
            <%= Html.LabelFor(x => x.FullName) %>
            <%= Html.EditorFor(x => x.FullName) %>
            <%= Html.ValidationMessageFor(x => x.FullName) %>
        </div>
        <div>
            <%= Html.LabelFor(x => x.LastName) %>
            <%= Html.EditorFor(x => x.LastName) %>
            <%= Html.ValidationMessageFor(x => x.LastName) %>
        </div>
        <div>
            <%= Html.LabelFor(x => x.Address) %>
            <%= Html.EditorFor(x => x.Address) %>
            <%= Html.ValidationMessageFor(x => x.Address) %>
        </div>

        <a href="#" class="deleteRow">delete</a>
    <% } %>
</div>
于 2013-01-02T15:52:07.713 に答える