金字塔和变色龙 ZPT
我是网络开发新手,正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用“tal:repeat”。如果您已将“people”传递给模板,这是一个字典列表:
You need to use "tal:repeat". If you've passed in "people" to the template, which is a list of dictionaries: