nvelocity的递归方法

时间:2011-10-24 14:32:26

标签: castle-monorail nvelocity

我正在使用单轨列车,我已经:

在我的模型中:

class Foo
{
   public List<Foo> foos;
}

在我的控制器中:

PropertyBag["foos"] = foos; // foos is initialised

在我看来:

<ul>
    #foreach($foo in $foos)
         <li>
            // recursive method I want to render alls the foos
         <li>  
    #end
</ul>

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以尝试编写递归宏(请参阅caveatsreferenceexample),但我可能只会写一个helper