我的对象如下所示:
<app>
<child opts="{ json }"></child>
<script>
this.json = [
{
text: 'parent',
child: [
{
text: 'child1',
child: {
text: 'child2'
}
}
]
}
];
</script>
</app>
每个孩子都可以有自己的孩子。所以我在这里需要递归标签。这就是我所拥有的:
<child>
<h1>child: { opts.opts.text }</h1>
<div if={opts.opts.child}>
<child opts={opts.opts.child}></child>
</div>
</child>
我明白了Maximum call stack size exceeded
。我在一个 riot 中读到 js 递归标签是一个问题,但没有找到任何解决方案,或者说它不可能。