金字塔和变色龙 ZPT

发布于 2024-11-08 17:11:26 字数 253 浏览 0 评论 0原文

我是网络开发新手,正在尝试使用 Pyramid 在 python 中制作一个简单的网页。不过,在使用 Chameleon 制作模板文件时,我遇到了一些障碍。我现在想做的事情非常简单。视图可调用返回一个字典列表(所有字典具有相同的键,只是不同的值)。我想通过循环列表中的每个条目将这些值放入表中。

我在寻找如何在 Chameleon 中进行循环时遇到了很多麻烦。一旦我有了一本字典,我就知道如何获取给定键的值。如果有人知道一个好的教程或者可以给出一个简单的例子,我们将不胜感激。

I'm new to web development and am trying to make a simple webpage in python using Pyramid. I've run into a bit of a snag though when it comes to making template files using Chameleon. What I'm trying to do right now is very simple. The view callable returns a list of dictionaries (all dictionaries have same keys just different values). I want to put these value into a table by looping through each entry in the list.

I'm having a lot of trouble finding out how to do the loop in Chameleon. Once I have a dictionary I know how to get its values for a given key. If anyone knows of a good tutorial or can just give a quick example it would be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安稳善良 2024-11-15 17:11:26

您需要使用“tal:repeat”。如果您已将“people”传递给模板,这是一个字典列表:

<ul>
  <li tal:repeat="person people">${person['firstname']} ${person['lastname']}</li>
</ul>

You need to use "tal:repeat". If you've passed in "people" to the template, which is a list of dictionaries:

<ul>
  <li tal:repeat="person people">${person['firstname']} ${person['lastname']}</li>
</ul>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文