Introduction to Forms and Requests
In this lesson, we will learn about the two methods of handling forms in Flask.
Handling forms in Flask
The Flask
package itself does not provide us a way to handle forms. There are two ways that developers deal with this:
- Via the
request
object - Via the
Flask-WTF
extension
In this lesson, we will briefly discuss the first option.
Using the request object
Here, we will take the ...