5

我试图迭代表内的数据:

  <table>
    <template iterate="entry in data">
      <tr>
        <template iterate="value in entry.values">
          <td>{{ value }}</td>
        </template>
      </tr>
    </template>
  </table>

出于某种原因,我在构建时收到此错误消息:

表上下文中的意外结束标记(模板)导致了 voodoo 模式。

当我在里面迭代时它工作正常ul

  <ul>
    <template iterate="entry in data">
      <template iterate="value in entry.values">
        <li>{{ value }}</li>
      </template>
    </template>
  </ul>

我想使用表和迭代应该不是问题。

4

1 回答 1

5

看起来我找到了解决方案,虽然我仍然不知道问题是什么:

<table template iterate="entry in data">
  <tr template iterate="value in entry.values">
    <td>{{ value }}</td>
  </tr>
</table>
于 2013-02-19T12:56:22.057 回答