-1

我很确定这应该很容易。我正在使用 Flask,并且正在构建一个获取 jeson 元素列表的模板。我希望建立一个以有序方式列出这些元素的表,并读取列表中每个 json 元素的特定属性。我一直在使用的代码如下:

<body>
  <div class="container-fluid">
   <h1> Users are: </h1>
   <table>
    <tr>
        <th>user name</th>
        <th>user fb_id</th>
        <th>user mt_id</th>
        <th>user ts_last_show_request</th>
    </tr>
    {% for item in users %}
    <tr>
        <td>item[fb_name]</td>
        <td>item[fb_uid]</td>
        <td>item[mt_uid]</td>
        <td>item[ts_last_show_request]</td>
    </tr>
    {% endfor %}
   </table>
  </div>
</body>

但是这段代码只是创建了一个漂亮的表格标题,其中包含一个不解释“item [mt_uid]”命令的相同行列表,而只是列出了它们。

4

1 回答 1

2

你需要这样做:

<tr>
  <td>{{ item[fb_name] }}</td>
  <td>{{ item[fb_uid]  }}</td>
  <!-- etc. -->
</tr>
于 2013-01-15T16:07:16.633 回答