What is the difference between a function-based view (FBV) and a class-based view (CBV) in Django?
-
A
FBVs are plain functions; CBVs are classes that inherit from Django view classes
-
B
FBVs are faster; CBVs are slower
-
C
FBVs support only GET; CBVs support all methods
-
D
FBVs are deprecated in Django 4+