速度递归方法

发布于 2024-12-11 08:41:34 字数 421 浏览 1 评论 0原文

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

在我的模型中:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那些过往 2024-12-18 08:41:34

您可以尝试编写递归宏(请参阅注意事项参考示例),但我可能只是写一个 helper 代替。

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文