将 google-appengine 本机模型链接到 Django 模型
我已将我的 GAE 项目移植到 django-nonrel,现在我希望将我的对象链接到 Django User 对象:
class Opinion(google.appengine.ext.db.Model):
...
author = db.ReferenceProperty(django.contrib.auth.User)
不幸的是,这是不可能的,因为您只能通过这种方式链接 GAE 模型。
问题 - 解决这个问题的最佳方法是什么?是否有可能或者我应该以某种方式解决它?
我不想迁移旧的 GAE 模型,因为那里已经有大量数据。
I've ported my GAE project to django-nonrel, and now I would like to have link from my object to Django User object:
class Opinion(google.appengine.ext.db.Model):
...
author = db.ReferenceProperty(django.contrib.auth.User)
Unfortunately, that's not possible, since you only can link GAE models this way.
Question - what's the best way to solve this? Is it possible or should I work it around somehow?
I don't want to migrate my old GAE model since I already have a bunch of data there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最初的谷歌搜索没有给我带来任何好处:
在 django-nonrel 列表上我读到:
另一个问题,和我的一模一样,没有得到解答。
...我发现另一个地方,人们建议切换到 Django 模型。
我想那就是这样,没有办法做我需要的事情,需要迁移。
My initial googling and searching brought me nothing good:
On django-nonrel list I read:
Another question, exactly like mine, was left unanswered.
... and I've found another place where people recommend switching to Django models.
I guess that's that then, there is no way of doing what I need, one needs to migrate.