我正在使用django-userena。我有一个名为UserProfile的模型。我在注册表单中添加了额外的字段。这些字段显示正确但数据未保存。我也想将一些字段数据保存到另一个模型(Business)中。例如,我有两个字段,如contact和business。我希望联系人字段转到UserProfile模型,业务字段转到业务模型。任何线索?谢谢这是我的代码classSignupFormExtra(SignupForm):address=forms.CharField(label=_(u'Address'),max_length=30,required=False)contact=form