Django Forms:如何编辑模型本身不存在的字段

发布于 2024-10-15 17:28:53 字数 306 浏览 2 评论 0原文

我有两个模型,FooBarBar 有一个 Foo 的外键。在 Django 管理界面中,我想让用户编辑链接到 FooBar 实例列表。

我的想法是在表单中包含 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 技术交流群。

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

发布评论

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

评论(1

轻拂→两袖风尘 2024-10-22 17:28:53

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文