如何在Cheetah for Python中正确使用多维字典?
我有以下字典:
{0: {'Shortname': 'cabling', 'Name': 'CAT5 Cabling', 'MSRP': '$45.00'}, 1: {'Shortname': 'antenna', 'Name': 'Radio Antenna', 'MSRP': '$35.00'}}
并使用 Cheetah,模板的以下部分:
#for $item in $items
<tr>
<td>$item.Name</td>
<td>$item.MSRP</td>
</tr>
#end for
当我运行代码时,我收到此错误:
<class 'Cheetah.NameMapper.NotFound'>: cannot find 'Name'
args = ("cannot find 'Name'",)
message = "cannot find 'Name'"
在模板中,第 1 行,在 #for 声明中,我尝试分离出键值,例如as:
#for $key, $value in $items
但是,我仍然无法迭代这些值来获取必要的信息。
我做错了什么吗?
I have the following dictionary:
{0: {'Shortname': 'cabling', 'Name': 'CAT5 Cabling', 'MSRP': '$45.00'}, 1: {'Shortname': 'antenna', 'Name': 'Radio Antenna', 'MSRP': '$35.00'}}
And using Cheetah, the following section of template:
#for $item in $items
<tr>
<td>$item.Name</td>
<td>$item.MSRP</td>
</tr>
#end for
When I run the code, I get this error:
<class 'Cheetah.NameMapper.NotFound'>: cannot find 'Name'
args = ("cannot find 'Name'",)
message = "cannot find 'Name'"
In the template, line 1, in the #for declaration, I have tried separating out the key value, such as:
#for $key, $value in $items
However, I still cannot iterate over the values to get the necessary information.
Am I doing something blatantly wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,我在 Cheetah 中使用 items 作为变量名时遇到了问题。可能是保留字什么的。
使用不太通用的东西可能会更好。
其次,由于您使用以整数作为键的外部字典,因此 $item 将是该整数。
这意味着您要查找整数中的名称。因此,在您使用这样的字典的情况下,您可能会这样做(也使用不同的字典名称):
这样的列表将适用于您的模板。
First off, I had problems using items as the variable name in Cheetah. Might be a reserved word or something.
Something less generic might be better to use.
Secondly, since you use an outer dict with an integer as key, $item will be that integer.
Which means you look for Name in an integer. So in your case with a dict like that, you might do (with a different name of the dict too):
A list like this would work with your template.