- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的数据存储中有一个 ndb 模型,其中包含两个字段 - 过期和过期,以及书名、作者等其他详细信息。
class Books(ndb.Model):
expiry = ndb.IntegerProperty() #epoch
expired = ndb.BooleanProperty(default=False) # set True if expiry < curr_time
我已经编写了 cron.yaml 和 cron.py 来标记 expired=True
用于查找 expiry < curr_time
所在的书籍。
以下是我的 cron.py 片段:
from google.appengine.api import search
import logging
from models.books import Books
from google.appengine.ext import ndb
import time
def deleteindex(cls):
curr_time = int(time.time()) + 60
#find the books which have expired but not marked expired.
expired_books = Books.query(ndb.AND(Books.expiry < curr_time, not Books.expired))
print expired_books
但是,我收到错误:
File "/home/hduser/Documents/GCP/book-shelf453/default/app/cron.py", line 16, in deleteindex
expired_books = Books.query(ndb.AND(Books.expiry < curr_time, not Books.expired)) File "/home/hduser/Documents/GCP/google-cloud-sdk/platform/google_appengine/google/appengine/ext/ndb/query.py", line 583, in new ' received a non-Node instance %r' % node)
TypeError: ConjunctionNode() expects Node instances as arguments; received a non-Node instance False
我不确定这里的问题。请建议!谢谢!
最佳答案
ndb 查询过滤器必须包含模型属性和值之间的比较 - 例如 Books.expiry
之间的比较和一个int
。
not Books.expired
不是这样的比较,这就是错误的原因。
而不是否定Books.expired
,将其与 bool 值进行比较。
这应该有效:
expired_books = Books.query(ndb.AND(Books.expiry < curr_time, Books.expired != False))
关于python - GAE 数据存储查询 ConjunctionNode 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49098476/
我的数据存储中有一个 ndb 模型,其中包含两个字段 - 过期和过期,以及书名、作者等其他详细信息。 class Books(ndb.Model): expiry = ndb.Intege
我是一名优秀的程序员,十分优秀!