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.
我有这样的模型:文章、链接和文章链接。文章可以附加许多链接,我需要从一个表单中保存它们。
我已经为文章创建了所有的关系和一个 ModelForm,但技巧部分是链接有两个字段:名称和 URL。我不知道必须使用什么样的表单结构,我尝试了名称为“links[name]”和“links[url]”的隐藏输入,但没有奏效。
我应该去哪里看?有什么可行的例子吗?Django 文档对这种特殊情况没有帮助。
你应该看看内联表单集。