0") 有没有办法用索-6ren">
gpt4 book ai didi

python - App Engine 查询使用索引引用检索数据

转载 作者:行者123 更新时间:2023-11-28 21:29:17 29 4
gpt4 key购买 nike


class Entry(Base):
amount = db.IntegerProperty()


entries = Entry.gql("WHERE amount > 0")

有没有办法用索引作为数组来引用条目结果,例如

my_entry = entries[4]

最佳答案

entries = [x for x in Entry.gql("WHERE amount > 0")]

此答案与之前的答案之间的区别在于,它在数据存储区而不是处理程序中进行过滤,并且不需要您猜测将返回的实体的最大数量。

关于python - App Engine 查询使用索引引用检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5855488/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com