django-registration アプリを拡張し、Django Profile を使用して登録フォームを作成しようとしています。プロファイルのモデルとフォームを作成しました。django シェルを確認すると、フィールドが生成されています。プロファイル フィールドについては、ModelForm を使用しています。今、私は django-registration と profile フィールドの両方を一緒にする方法に驚いています。以下は私が開発したコードです
model.py
class UserProfile(models.Model):
"""
This class would define the extra fields that is required for a user who will be registring to the site. This model will
be used for the Django Profile Application
"""
GENDER_CHOICES = (
('M', 'Male'),
('F', 'Female'),
)
#Links to the user model and will have one to one relationship
user = models.OneToOneField(User)
#Other fields thats required for the registration
first_name = models.CharField(_('First Name'), max_length = 50, null = False)
last_field = models.CharField(_('Last Name'),max_length = 50)
gender = models.CharField(_('Gender'), max_length = 1, choices=GENDER_CHOICES, null = False)
dob = models.DateField(_('Date of Birth'), null = False)
country = models.OneToOneField(Country)
user_type = models.OneToOneField(UserType)
address1 = models.CharField(_('Street Address Line 1'), max_length = 250, null = False)
address2 = models.CharField(_('Street Address Line 2'), max_length = 250)
city = models.CharField(_('City'), max_length = 100, null = False)
state = models.CharField(_('State/Province'), max_length = 250, null = False)
pincode = models.CharField(_('Pincode'), max_length = 15)
created_on = models.DateTimeField()
updated_on = models.DateTimeField(auto_now=True)
フォーム.py
class UserRegistrationForm(RegistrationForm, ModelForm):
#resolves the metaclass conflict
__metaclass__ = classmaker()
class Meta:
model = UserProfile
fields = ('first_name', 'last_field', 'gender', 'dob', 'country', 'user_type', 'address1', 'address2', 'city', 'state', 'pincode')
django-registration アプリとカスタム アプリを混在させるにはどうすればよいですか。独自のカスタムフォームを使用して、Django-Registration と Django-Profileを含む多くのサイトとリンクを調べましたが、特に ModelForm を使用しているため、先に進むかどうかはわかりません。
更新 (2011 年 9 月 26 日)
以下の@VascoPの提案に従って変更を加えました。テンプレートファイルを更新し、view.py から次のコードを作成しました
def register(request):
if request.method == 'POST':
form = UserRegistrationForm(request.POST)
if form.is_valid():
UserRegistrationForm.save()
else:
form = UserRegistrationForm()
return render_to_response('registration/registration_form.html',{'form' : form}, context_instance=RequestContext(request))
次の変更後、フォームは正しくレンダリングされますが、問題はデータが保存されないことです。私を助けてください。
更新 (2011 年 9 月 27 日)
UserRegistrationForm.save() は form.save() に変更されました。更新されたコードは、views.py の次のとおりです。
def register(request):
if request.method == 'POST':
form = UserRegistrationForm(request.POST)
if form.is_valid():
form.save()
else:
form = UserRegistrationForm()
return render_to_response('registration/registration_form.html',{'form' : form}, context_instance=RequestContext(request))
更新後も、ユーザーは保存されません。代わりにエラーが発生します
「スーパー」オブジェクトには「保存」属性がありません
RegistrationForm クラスに save メソッドがないことがわかります。では、データを保存するにはどうすればよいですか? 助けてください