djangoappengine 中 ListProperty(db.Key) 的等效替换

发布于 2024-09-11 13:59:01 字数 241 浏览 4 评论 0原文

我并尝试使用 djangoappengine,但我不确定如何编写模型来合并标准

ListProperty(db.Key) 

I知道 djangotoolbox 提供了此字段类型,但我无法弄清楚确切的语法。

I and trying to use djangoappengine, but I am unsure how can I write model to incorporate standard

ListProperty(db.Key) 

I know that djangotoolbox provides this field types but I am unable to figure out the exact syntax.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

影子的影子 2024-09-18 13:59:01

db.ListProperty(db.Key) 存储任何实体的键的列表。

型号:

class Profile(db.Model):
data_list=db.ListProperty(db.Key)

class Data(db.Model):
name=db.StringProperty()

视图:

prof=Profile()
data=Data.all()

for data in data:
    prof.data_list.append(data)

/// Here data_list stores the keys of Data entity

Data.get(prof.data_list) will get all the Data entities whose key are in the data_list attribute

db.ListProperty(db.Key) stores a list of any entity's keys.

models:

class Profile(db.Model):
data_list=db.ListProperty(db.Key)

class Data(db.Model):
name=db.StringProperty()

views:

prof=Profile()
data=Data.all()

for data in data:
    prof.data_list.append(data)

/// Here data_list stores the keys of Data entity

Data.get(prof.data_list) will get all the Data entities whose key are in the data_list attribute
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文