0

Pythonを使用してdjangoフォームで作業しています。editform の保存中に問題が発生しました。

文字フィールドとテキストフィールドの変更を含むフォームを保存している場合、正常に機能します(更新されたコンテンツで更新されます)。しかし、imagefield と charfield を変更してフォームを保存すると、ページは更新されますが更新されません。

詳細が更新または保存されたら、ページを更新します。前もって感謝します。

私の見解.PY:

def profile_page(request,type = None):
    profile_list = get_object_or_404(UserProfile, visit_id = request.user.username, profile_type = type)
    image = UserProfile.objects.get(visit_id = request.user.username, profile_type = type).image
    if request.method == "POST":
        form = UserProfileForm(request.POST, request.FILES)
        if form.is_valid():
            new_image = form.cleaned_data['image']
            if new_image == None:
                current_image=form.fields['image'].initial = profile_list.image
            else:
                person = UserenaSignup.objects.get(visitid = request.user.username).id
                UserImage.objects.filter(username = person, profile_type = type).delete()
                current_image = UserImage.objects.create(username_id = person, profile_type = type, image = form.cleaned_data['image']).image
            UserProfile.objects.filter(visit_id = request.user.username, profile_type = type).update(username            = form.cleaned_data['username'],
                                                                                                  designation            = form.cleaned_data['designation'],
                                                                                                  image                  = current_image,
                                                                                 )
            return render_to_response('profile_page.html',locals(),context_instance = RequestContext(request))
        else:
            form = UserProfileForm(instance = profile_list)
            return render_to_response('profile_page.html', locals(), context_instance=RequestContext(request))
    else:
        form = UserProfileForm(instance = profile_list)
    return render_to_response('profile_page.html',locals(),context_instance = RequestContext(request))
4

1 に答える 1

0

.imageこの行の最後 から削除してみてください。

current_image = UserImage.objects.create(username_id = person, profile_type = type, image = form.cleaned_data['image']).image
于 2012-11-02T08:26:23.580 に答える