Handling forms in Django
In Django, we can use forms to handle user input in a web application. We can define forms inside our app's forms.py file. Here's an example form for creating a new blog post:
python
from django import forms
from .models import Post
class PostForm(forms.ModelForm):
class Meta:
model = Post
fields = ['title', 'content']
In this example, we define a PostForm class that inherits from Django's ModelForm class. We set the Meta class to use the Post model and specify the fields that we want to include in the form.
No comments:
Post a Comment