문제

I'm working with monorail, I've :

in my model :

class Foo
{
   public List<Foo> foos;
}

in my controler :

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

in my view :

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

How can I do that?

도움이 되었습니까?

해결책

You could try writing a recursive macro (see caveats, reference, example), but I'd probably just write a helper instead.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top