Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Django 中有两种方法可以在一个请求中处理多个表单:
在哪个用例中更可取?
在我的具体情况下,表单列出了要从差异中更新的对象的字段。对于每个字段,可以定义一个操作(如“更新值”、“保留值”)。该页面包含多个对象的表单。
如果您有多个具有相同输入名称的不同表单类,例如 PetForm 和 OwnerFormname在同一页面中具有两个输入,那么您必须使用您链接的文档中解释的前缀。
name
如果您想重复相同的表单类,即。渲染一张 TicketForm 的表格,那么你可以直接使用 Formsets:Formsets 内部使用了表单前缀功能,你不必担心。