如何在Cheetah for Python中正确使用多维字典?

发布于 2024-09-14 06:07:31 字数 692 浏览 2 评论 0原文

我有以下字典:

{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 技术交流群。

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

发布评论

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

评论(1

美人如玉 2024-09-21 06:07:31

首先,我在 Cheetah 中使用 items 作为变量名时遇到了问题。可能是保留字什么的。
使用不太通用的东西可能会更好。

其次,由于您使用以整数作为键的外部字典,因此 $item 将是该整数。
这意味着您要查找整数中的名称。因此,在您使用这样的字典的情况下,您可能会这样做(也使用不同的字典名称):

#for $item in $products
<td>$products[$item].Name</td>
...
#end for

这样的列表将适用于您的模板。

products = [{'Name':'prod1', ...}, {'Name': 'prod2', ...}]

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):

#for $item in $products
<td>$products[$item].Name</td>
...
#end for

A list like this would work with your template.

products = [{'Name':'prod1', ...}, {'Name': 'prod2', ...}]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文