速度递归方法
我正在使用单轨列车,我:
在我的模型中:
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>
我该怎么做?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试编写递归宏(请参阅注意事项,参考,示例),但我可能只是写一个 helper 代替。
You could try writing a recursive macro (see caveats, reference, example), but I'd probably just write a helper instead.