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.
我在保存两个表单的输入时遇到问题,其中一个是用户创建表单,另一个是用户配置文件创建表单。当我尝试调用 creation_form.save() 然后调用 profile_form.save() 时,我收到一个 IntegrityError,因为配置文件没有值,当我尝试先保存配置文件表单时,我收到一个 IntegrityError,因为用户还没有身份证。
修复了问题!只需要从我的 models.py 中删除一个 post_save.connect(create_user_profile, sender=User)