Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8762979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T15:40:26+00:00 2026-06-13T15:40:26+00:00

I have a simple form and a view that are doing something as basic

  • 0

I have a simple form and a view that are doing something as basic as:

from annoying.decorators import ajax_request

@require_POST
@login_required
@ajax_request
def my_view(request):
    form = MyForm(request.POST)
    if form.is_valid():
        form.save(request.user)
        return {"ok": True}
    return {"ok": False, "errors": form.errors}

forms.py:

class MyForm(forms.Form):
    name = forms.CharField(max_length=250)

    def clean_name(self):
        cleaned_data = self.cleaned_data

        name = cleaned_data.get('name', '')
        if MyModel.objects.filter(name__iexact=name).exists():
            raise forms.ValidationError(_(u"This already exists."))
        return cleaned_data

    def save(self, user):
        obj, created = MyModel.objects.get_or_create(name=self.cleaned_data["name"], user=user)
        return obj

But I have a problem at getting the self.cleaned_data in form.save method.
at the MyForm.clean_name my self.cleaned_data is cool.

But at form.save level, the self.cleaned_data = {‘name’: {…}}
Same for self.cleaned_data[‘name’]. wait for it.. but also self.cleaned_data[‘name’][‘name’][‘name’][‘name’][‘name’]…[‘name’][‘name’]

type(self.cleaned_data) and it’s keys is dict

what could make my code behave like that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T15:40:28+00:00Added an answer on June 13, 2026 at 3:40 pm

    Your problem is that clean_<fieldname> should be returning the cleaned value, not the entire cleaned_data dictionary:

    def clean_name(self):
        cleaned_data = self.cleaned_data
    
        name = cleaned_data.get('name', '')
        if MyModel.objects.filter(name__iexact=name).exists():
            raise forms.ValidationError(_(u"This already exists."))
        return name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having trouble doing something that is probably pretty simple! I have a
i have a simple form in my view that has a text area :
I'm making a simple search form in rails. In my search view I have
I have a simple form that looks like this: <%= simple_form_for @study,:url => studies_path,
I have a simple form for generating reports that I am adding a jqueryUI
I have a simple form that looks like so <% remote_form_for post, :url =>
I have an ASP.NET MVC 2 form that is working perfectly, doing client side
I have a simple form on an ASP.NET MVC site that I'm building. This
I have a view Search.jsp that has a form:form that is connected to a
I currently have a simple list view adapter that holds two rows of text.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.