我从服务器接收到一个 json 对象,其中包含树菜单数据,其中包含嵌套元素和 n 个层。我需要这个能够深入了解它们可能有多少子元素。
有没有办法使用 Dust.js 模板递归循环对象的子元素?
这方面的一个例子是:
{#assignment}
{#childAssignment}
{#nChildAssignment}
//etc, etc, etc into the dark pits of mordor
{/nChildAssignment}
{/childAssignemnt}
{/assignment}