Вопрос

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