Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Forms: Validation | Forms and Dynamic URLs
course content

Зміст курсу

Django: Build Your First Website

Forms: ValidationForms: Validation

Description

AppFolder \ forms.py

class Meta

  • model = Note: Tells Django that this form is associated with the Note model;
  • fields = ['title', 'content']: Specifies exactly which fields from the model we want to include in our form.
AppFolder \ veiws.py

Handling Form Submission (POST method)

  • Checks if the current request method is POST. If it is, it means the user submitted a form;
  • Creates a NoteForm instance with the data from the POST request (request.POST);
  • Checks if the form is valid using form.is_valid(). If the form is valid, it saves the data to the database using form.save().

Все було зрозуміло?

Секція 6. Розділ 2
course content

Зміст курсу

Django: Build Your First Website

Forms: ValidationForms: Validation

Description

AppFolder \ forms.py

class Meta

  • model = Note: Tells Django that this form is associated with the Note model;
  • fields = ['title', 'content']: Specifies exactly which fields from the model we want to include in our form.
AppFolder \ veiws.py

Handling Form Submission (POST method)

  • Checks if the current request method is POST. If it is, it means the user submitted a form;
  • Creates a NoteForm instance with the data from the POST request (request.POST);
  • Checks if the form is valid using form.is_valid(). If the form is valid, it saves the data to the database using form.save().

Все було зрозуміло?

Секція 6. Розділ 2
some-alt