0

实体类定义如下:

class Item(db.Model):
    list = db.ListProperty(db.Key)

返回存储在 ListProperty 中的元素数量的属性或函数是什么,以便我可以使用类似的东西

{{ item.list.... }}

在 html 中显示它。

4

1 回答 1

2

这是一个列表,因此您可以在其上使用 len() 。

total = len(item.list)

或者如果您在 html 上使用 jinja,您可以使用 count 过滤器

{{ item.list|count }}
于 2013-08-09T19:25:48.273 回答