Django-Piston - 我无法在带有外键的模型上发布
我正在尝试在我的 Django 项目上设置活塞。当我尝试在包含外键:位置的模型上发布(创建)新条目时,我遇到了困难。
这是我收到的确切错误:
无法分配“u'1'”:“Fest.location”必须是“Location”实例。
在上面的示例中,我尝试在 POST 中通过 location=1
发送。
我在这里做错了什么?当然,CREATE 支持外键...
更新:
需要明确的是,我使用 PISTON 来处理这些 REST API 请求。我的处理程序当前如下所示:
class FestHandler(BaseHandler):
model = Fest`
I'm trying to set up piston on my Django project. I ran into a brick wall when I tried to POST (create) a new entry on a model that contains a ForeignKey: location.
Here is the exact error I receive:
Cannot assign "u'1'": "Fest.location" must be a "Location" instance.
In the above example, I tried to send over location=1
in the POST.
What am I doing wrong here? Surely Foreign Keys are supported on CREATEs...
Update:
To be clear, I'm using PISTON to handle these REST API requests. My Handler currently looks like this:
class FestHandler(BaseHandler):
model = Fest`
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要分配一个实际的对象。像下面这样的东西应该可以工作:
其中
obj
是您尝试保存的模型,其位置作为外键。You need to assign an actual object. Something like the following should work:
where
obj
is the model you're trying to save which has location as a foreign key.