gpt4 book ai didi

python - 在 Google App Engine 中,如何选择不存在属性的实体?

转载 作者:太空宇宙 更新时间:2023-11-04 01:41:52 25 4
gpt4 key购买 nike

使用 python 版本的 GAE 并从 db.Model 扩展模型,如何获取属性等于 None 或不存在的实体?

#This works
#Fetch 10 entities where duration == 0.0
entities = MyModel.all().filter('duration = ', 0.0).fetch(10)

#This doesn't. How can I do the equivalent?
#Fetch 10 entities where duration == None
entities = MyModel.all().filter('duration = ', None).fetch(10)

最佳答案

您有没有 duration 属性的实体(无法过滤,因为索引无法引用它们)和 duration 设置为 None 的实体(可以过滤) .

由于您更改了 MyModel 架构,您应该使用如下内容修复没有 duration 属性存储的实体:

entities = MyModel.all()
for entity in entities :
if not entity.duration :
entity.duration = None
entity.put()

查看appengine-mapreduce库来完成这个长期运行的任务。

关于python - 在 Google App Engine 中,如何选择不存在属性的实体?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4106500/

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