djangoappengine 中 ListProperty(db.Key) 的等效替换
我并尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
db.ListProperty(db.Key) 存储任何实体的键的列表。
型号:
视图:
db.ListProperty(db.Key) stores a list of any entity's keys.
models:
views: