Django Forms:如何编辑模型本身不存在的字段
我有两个模型,Foo
和 Bar
。 Bar
有一个 Foo
的外键。在 Django 管理界面中,我想让用户编辑链接到 Foo
的 Bar
实例列表。
我的想法是在表单中包含 javascript,这将生成一个由返回服务器的查询调用填充的列表。当用户单击表单上的“提交”时,列表将执行 AJAX 调用以在服务器上进行正确的更新。其余的提交工作将不间断地继续进行。
这听起来是个好主意,还是我应该采取另一种方法?
I have two models, Foo
and Bar
. Bar
has a foreign key to Foo
. From the Django Admin interface, I'd like to let the user edit the list of Bar
instances that are linked to Foo
.
My idea for how to do this would be to include javascript in the form, which would make a list populated by query calls back to the server. When the user clicks "submit" on the form, the list would do an AJAX call to make the proper updates on the server. The rest of the submission continues uninterrupted.
Does this sound like a good idea, or is there another way I approach I should be taking?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Django 管理应用程序已满足此功能。
您只需要为您的类创建一个 InlineModelAdmin 。
http://docs.djangoproject.com/en/1.2/参考/contrib/admin/#inlinemodeladmin-objects
This feature is already catered for in the Django admin application.
You just need to create an InlineModelAdmin for your class.
http://docs.djangoproject.com/en/1.2/ref/contrib/admin/#inlinemodeladmin-objects