我有一个需要多次显示表格的模型。我在模型集下使用过它。我似乎对这个模型的 id 有疑问,它也是模型的主键。
我用我希望编辑的数据预填充表单集。
但是,每当我单击提交时,它都会刷新页面并显示错误消息“(隐藏字段 id)此无已存在。”
此错误专门针对隐藏的“id”字段
<input type="hidden" id="id_form-0-id" value="2972" name="form-0-id"/>
这是模板中的片段。(我从萤火虫那里得到的)问题可能是什么,因为表格无效我无法保存数据。
ProfilesFormSet = modelformset_factory(Profile,exclude = ( <items spearated by commas>), extra=0)
profile_form_set = ProfilesFormSet(queryset = Profile.objects.filter(userprofile=userprofile).order_by('-modified_on'))
这是代码片段。