0

如何在我的 html 中使用变色龙和金字塔进行循环?我搜索但我没有找到类似的东西=/在这种情况下更容易使用javascript吗?我在 MACADMIN(引导主题)中使用数据表。

<div class="table-responsive">
  <table cellpadding="0" cellspacing="0" border="0" id="data-table" width="100%">
    <thead>
      <tr>
        <th>
          Rendering engine
        </th>
        <th>
          Browser
        </th>
        <th>
          Platform(s)
        </th>
        <th>
          Engine version
        </th>
        <th>
          CSS grade
        </th>
      </tr>
    </thead>
    <tbody>
         Maybe put FOR here? like {for x items in "TABLE"}
      <tr>
        <td>
          {orgao_doc[x].nome}
        </td>
        <td>
          {orgao_doc[x].cargo}
        </td>
        <td>
          {orgao_doc[x].coleta}
        </td>
        <td>
          {orgao_doc[x].email}
        </td>
        <td>
          {orgao_doc[x].endereco}
        </td>
      </tr>
    </tbody>
  </table>
  <div class="clearfix">
  </div>
</div>
4

1 回答 1

1

给定一个序列,使用tal:repeat属性重复模板的某些部分:

<tbody>
  <tr tal:repeat="item orgao_doc">
    <td>${item.nome}</td>
    <td>${item.cargo}</td>
    <td>${item.coleta}</td>
    <td>${item.email}</td>
    <td>${item.endereco}</td>
  </tr>
</tbody>

<tr>标签被重复插入到输出中,对于 中的每个元素一次orgao_docitem渲染模板的这一部分时,名称绑定到每个元素。

于 2014-09-01T14:03:41.977 回答