Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
586 views
in Technique[技术] by (71.8m points)

asp.net mvc - Create a form from a recursive model

I have a recursive model like this:

public class Node
{
    public int Id { get; set; }
    public string Text { get; set; }
    public IList<Node> Childs { get; set; }

    public Node()
    {
        Childs = new List<Node>();
    }
}

I am building a tree with it withing a razor view by using this code:

<ul>
    @DisplayNode(Model)
</ul>

@helper DisplayNode(Node node) {
    <li>
        @node.Text

        @if(node.Childs.Any())
        {
            <ul>
                @foreach(var child in node.Childs)
                {
                    @DisplayNode(child)
                }
            </ul>
        }
    </li>
}

Everything works fine, my tree renders, but I need to add a textbox on each row of the tree and I want to have to input names like this:

Childs[0].Childs[1].Childs[2].Text

So my model binding will work as expected.

Is there any way by using EditorTemplates or anything else to achieve this?

I want to avoid building input names in javascript on the form submit.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You could use editor templates which respect the current navigational context instead of such @helper.

So define a custom editor template for the Node type ( ~/Views/Shared/EditorTemplates/Node.cshtml):

@model Node
<li>
    @Html.LabelFor(x => x.Text)
    @Html.EditorFor(x => x.Text)
    @if (Model.Childs.Any())
    {
        <ul>
            @Html.EditorFor(x => x.Childs)
        </ul>
    }
</li>

and then inside some main view:

@model MyViewModel
<ul>
    @Html.EditorFor(x => x.Menu)
</ul>

where the Menu property is obviously of type Node.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...