7

UpdateView には、おそらく関連する 2 つの問題があります。まず、ユーザーを更新するのではなく、新しいユーザー オブジェクトを作成します。次に、フォームに表示されるフィールドを制限できません。

これが私のviews.pyです:

class RegistrationView(FormView):
    form_class = RegistrationForm 
    template_name = "register.html"
    success_url = "/accounts/profile/" 

    def form_valid(self, form):
        if form.is_valid:
            user = form.save() 
            user = authenticate(username=user.username, password=form.cleaned_data['password1'])
            login(self.request, user)
            return super(RegistrationView, self).form_valid(form) #I still have no idea what this is

class UserUpdate(UpdateView):
    model = User
    form_class = RegistrationForm
    fields = ['username', 'first_name']
    template_name = "update.html"
    success_url = "/accounts/profile/" 

および urls.py

url(r'^create/$', RegistrationView.as_view(), name="create-user"), 
url(r'^profile/(?P<pk>\d+)/edit/$', UserUpdate.as_view(), name="user-update"), 

UpdateView を適切に使用するにはどうすればよいですか?

4

3 に答える 3

8

問題 1. 同じフォーム (RegistrationForm) を使用して更新を行い、新しいユーザーを作成しているため、ユーザーが更新されません。

問題 2. フォームは、forms.py と呼ばれる独自のファイルに属します。私の提案するリファクタリング:



    #forms.py
    #place(forms.py) this in the same directory as views.py

    class UpdateForm(forms.ModelForm):
    #form for updating users
    #the field you want to use should already be defined in the model
    #so no need to add them here again DRY
        class Meta:
            model = User
            fields = ('field1', 'field2', 'field3',)

    #views.py
    #import your forms
    from .forms import UpdateForm
    #also import your CBVs
    from django.views.generic import UpdateView

    class UserUpdate(UpdateView):  
        context_object_name = 'variable_used_in `update.html`'
        form_class = UpdateForm
        template_name = 'update.html'
        success_url = 'success_url'

        #get object
        def get_object(self, queryset=None): 
            return self.request.user

        #override form_valid method
        def form_valid(self, form):
            #save cleaned post data
            clean = form.cleaned_data 
            context = {}        
            self.object = context.save(clean) 
            return super(UserUpdate, self).form_valid(form)    

少しエレガントな urls.py



    #urls.py
    #i'm assuming login is required to perform edit function
    #in that case, we don't need to pass the 'id' in the url. 
    #we can just get the user instance
    url(
        regex=r'^profile/edit$',
        view= UserUpdate.as_view(),
        name='user-update'
    ),

多くの情報が省略されているため、セットアップが何であるかはよくわかりません。私の解決策は、Django 1.5 を使用しているという前提に基づいています。CBV を使用したフォームの処理について詳しく知ることができます

于 2013-08-07T03:26:35.267 に答える
2

first :user = form.save()フォームをデータベースに保存します。フォームに pk がないため、新しいものを作成します。あなたがしなければならないことは、おそらくそのユーザー名を持つユーザーが存在するかどうかを確認し、存在しない場合は作成することです(この部分についてはgoogleを確認してください)。

2番目:フィールドを制限するにMetaは、フォームのクラスでそれらを指定する必要があります(ここでは示していません)、これを確認してください https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#modelform

于 2013-08-01T09:05:27.413 に答える