查询数据存储中包含列表属性中特定元素的所有模型
嘿,我有一个这样的模型: class List(db.Model): user = db.ReferenceProperty(User) listname = db.StringProperty() published = db.DateTimePrope…
AppEngine Datastore 获取列表属性中包含所有项目的实体
我想为我的应用程序实现某种标记功能。我想做一些类似的事情... class Item(db.Model): name = db.StringProperty() tags = db.ListProperty(str) 假…
谷歌应用程序引擎 - 如何从 html 表单的输入类型=“文本”获取 ListProperty
我有一个应用程序,它通过 html 表单获取一些参数,然后创建一个模型实体。问题是,无论我尝试什么,我都会收到这样的错误: BadValueError: Property…
列表属性如何影响 Google App Engine 中每个实体的索引条目?
我知道每个实体有 5000 个索引条目的限制,这 意味着我不能做这样的事情: class Foo(db.Model): x = db.ListProperty(int) y = db.ListProperty(int)…
是否可以在 App Engine 模型中动态命名属性?
setattr 允许您动态命名 Python 类中的属性。我正在尝试对 App Engine 模型执行类似的操作: class MyModel(db.Model): def __init__(self, *args, **…
使用 GQL 按 ListProperty 的计数进行排序
如果我有一个 db.Model 对象,例如: class Foo(db.Model): title = db.StringProperty() bars = db.ListProperty(db.Key) 并且我想查询数据存储中的…
如何在 google-app-engine 上创建一对多相关性
就像一个论坛有很多主题, 具体是:论坛和主题具有相同的模型: class Geo(db.Model): #self = db.SelfReferenceProperty() title = db.StringPropert…
如何在 google-app-engine 上的 db.ListProperty 中引用某些模型
这是我的模型: class Geo(db.Model): entry = db.ListProperty(db.Key) geo=Geo() geo.entry.append(otherModel.key()) html是: {% for i in geo.en…
应用程序引擎 StringListProperty
我有一个如下所示的模型: class test (db.Model) : tagList = StringListProperty() siteName = StringProperty() 我将标签存储在“tagList”中,并…
- 共 1 页
- 1