- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
假设一个 NDB(版本 0.7 和 0.8)模型,其键可以是 None:
class Test(model.Model):
k = model.KeyProperty()
value = model.IntegerProperty()
count = Test.query(Test.k == None).count() # error
#count = Test.query(Test.k != None).count() # error also
只有使用 None 过滤键才会抛出错误。
File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/ext/webapp/_webapp25.py", line 701, in __call__
handler.get(*groups)
File "/Users/reiot/Documents/Works/ndbtest/main.py", line 91, in get
count = Test.query(Test.k == None).count() # error
File "/Users/reiot/Documents/Works/ndbtest/ndb/model.py", line 500, in __eq__
return self._comparison('=', value)
File "/Users/reiot/Documents/Works/ndbtest/ndb/model.py", line 491, in _comparison
return FilterNode(self._name, op, self._datastore_type(value))
File "/Users/reiot/Documents/Works/ndbtest/ndb/model.py", line 1138, in _datastore_type
return datastore_types.Key(value.urlsafe())
AttributeError: 'NoneType' object has no attribute 'urlsafe'
如何使用 None 查询 KeyProperty?
最佳答案
这看起来像是 NDB 中的一个错误。你能在问题跟踪器上提交一份吗?
关于python - 如何在 Datastore Plus(NDB) 中查询 Model.KeyProperty == None,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7724252/
我有这两个模型: ################# ### Usergroup ### ################# class Usergroup(ndb.Model): group
我在理解实体和键在 Google App Engine NDB 中的工作方式时遇到一些问题。 我有一个 post 实体和一个 user 实体。如何将 post 上的 user_key 设置为 user
我有两个模型: class User(ndb.Model): email = ndb.StringProperty(required=True) name = ndb.StringPr
众所周知,应用引擎中的 keys_only 查询速度很快。 Google App Engine 现在可以运行“投影查询”,它可以只返回部分实体数据 https://developers.google.
我试图通过使用将字符串转换为相应类型的 Key 的自定义验证器来简化 ndb KeyProperties 的 JSON 序列化和反序列化。 想法是拥有这样的属性: def key_validator(
我刚刚开始使用 AppEngine 并使用 endpoints_proto_datastore 库。我的问题:当我尝试列出特定播放列表的所有 PlaylistItems 时,查询路径中的“播放列表”参
我已经查看了文档、文档和 SO 问题和答案,但仍在努力理解其中的一小部分。您应该选择哪个以及何时选择? 这是我到目前为止读过的内容(只是示例): ndb documentation movie dat
是否可以根据 KeyProperty 的祖先(父级)进行查询? EG,类似于以下内容: class Foo(ndb.Model): bar = ndb.KeyProperty() Foo.qu
我有一个简单的ndb模型如下: class TaskList(ndb.Model): title = ndb.StringProperty() description = ndb.Te
我有一些共享一组公共(public)属性的模型,我在其他模型继承的基本模型类中定义了这些属性: class BaseUser(ndb.Model): name = ndb.StringProp
在 AppEngine 的 NDB 数据存储中,似乎有两种方法可以将对象相互关联起来。有 ndb.KeyProperty 和 parents/ancestors keys .我对什么时候应该使用一个或
我有一个简单的场景,其中有一个 User 类,它具有 name、email 和 followers 属性。 class User(ndb.Model): name = ndb.StringPr
我正在尝试开发一个应用程序,其中 Student 实体通过它们的键添加到 Class 实体。所以在类里面,我可以有一个 List 的学生,可以通过他们的键来识别,这些键可以是 Integer 或 St
我正在使用 flask-appengine-template来自 kamalgill,我遇到了一个奇怪的问题。 我的 models.py 文件如下所示: from google.appengine.e
假设一个 NDB(版本 0.7 和 0.8)模型,其键可以是 None: class Test(model.Model): k = model.KeyProperty() value
ReferenceProperty 在处理两个模块之间的引用方面非常有帮助。狐狸例子: class UserProf(db.Model): name = db.StringProperty(r
有关于如何set的帖子, get , KeyProperty/StructuredProperty ,但没有任何内容告诉我如何使用 NDB 进行多对一建模。 我有两个模型: class Departm
我的问题是关于在 ndb 中建模一对多关系。我知道这可以通过(至少)两种不同的方式来完成:使用重复的属性或使用“外键”。我在下面创建了一个小例子。基本上我们有一篇文章可以有任意数量的标签。假设可以删除
我是一名优秀的程序员,十分优秀!