listproperty

listproperty

文章 0 浏览 1

查询数据存储中包含列表属性中特定元素的所有模型

嘿,我有一个这样的模型: class List(db.Model): user = db.ReferenceProperty(User) listname = db.StringProperty() published = db.DateTimePrope…

不可一世的女人 2024-10-13 07:48:42 5 0

AppEngine Datastore 获取列表属性中包含所有项目的实体

我想为我的应用程序实现某种标记功能。我想做一些类似的事情... class Item(db.Model): name = db.StringProperty() tags = db.ListProperty(str) 假…

够运 2024-10-11 13:50:05 3 0

谷歌应用程序引擎 - 如何从 html 表单的输入类型=“文本”获取 ListProperty

我有一个应用程序,它通过 html 表单获取一些参数,然后创建一个模型实体。问题是,无论我尝试什么,我都会收到这样的错误: BadValueError: Property…

夜无邪 2024-10-09 19:37:20 2 0

列表属性如何影响 Google App Engine 中每个实体的索引条目?

我知道每个实体有 5000 个索引条目的限制,这 意味着我不能做这样的事情: class Foo(db.Model): x = db.ListProperty(int) y = db.ListProperty(int)…

第七度阳光i 2024-10-08 09:59:31 3 0

是否可以在 App Engine 模型中动态命名属性?

setattr 允许您动态命名 Python 类中的属性。我正在尝试对 App Engine 模型执行类似的操作: class MyModel(db.Model): def __init__(self, *args, **…

情栀口红 2024-10-03 17:32:59 5 0

使用 GQL 按 ListProperty 的计数进行排序

如果我有一个 db.Model 对象,例如: class Foo(db.Model): title = db.StringProperty() bars = db.ListProperty(db.Key) 并且我想查询数据存储中的…

雨后彩虹 2024-09-25 22:20:36 4 0

如何在 google-app-engine 上创建一对多相关性

就像一个论坛有很多主题, 具体是:论坛和主题具有相同的模型: class Geo(db.Model): #self = db.SelfReferenceProperty() title = db.StringPropert…

江湖正好 2024-09-10 11:42:26 6 0

如何在 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…

硪扪都還晓 2024-09-10 11:24:50 4 0

应用程序引擎 StringListProperty

我有一个如下所示的模型: class test (db.Model) : tagList = StringListProperty() siteName = StringProperty() 我将标签存储在“tagList”中,并…

孤独患者 2024-09-08 21:07:21 2 0
更多

推荐作者

1CH1MKgiKxn9p

文章 0 评论 0

ゞ记忆︶ㄣ

文章 0 评论 0

JackDx

文章 0 评论 0

信远

文章 0 评论 0

yaoduoduo1995

文章 0 评论 0

霞映澄塘

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文