我正在使用单轨列车,我已经:
在我的模型中:
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>
我该怎么做?