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 7720479
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:41:05+00:00 2026-06-01T03:41:05+00:00

After obtaining data from a model form based on a Model, say form_data =

  • 0

After obtaining data from a model form based on a Model, say

form_data = MyModelForm(request.POST)

Then I can either create an instance of Model by

instance = Model(**form_data.cleaned_data)

Or by

instance = form_data.save()

I wonder which one is the preferred way in the django world

  • 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-01T03:41:06+00:00Added an answer on June 1, 2026 at 3:41 am

    There is a significant difference between the two.

    instance = Model(**form_data.cleaned_data) doesn’t save the object in the database. It only creates a local instance.

    instance = form_data.save() adds the object to the database (it performs a commit, if so supported), and it also has the side effect of triggering validation.

    If you want to do custom post-processing of the object before saving it, you pass commit=False to the save() method.

    instance = form_data.save(commit=False)
    # do some stuff with instance
    instance.save()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

After obtaining info from an email body, I have a lot of symbols such
After obtaining the urls for various blogspots, tumblr and wordpress pages, I faced some
I'm suffering from an OutOfMemoryException when obtaining an Image from an ImageList I've been
I am making a social app which obtains data from Facebook and displays it
I'm facing a problem with the nested set model, with MySQL. I can insert,
Message: Timeout expired. The timeout period elapsed prior to obtaining a connection from the
After reading the Head First Design Patterns book and using a number of other
After the suggestion to use a library for my ajax needs I am going
After reading this question , I was reminded of when I was taught Java
After upgrading to the latest version of TortoiseSVN (1.5.2.13595), it's context menu is no

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.