Assume that you have the following urlpatterns:
urlpatterns = [
path("", IndexView.as_view()),
path("candies", CandyView.as_view()),
path("candies/Fudge", FudgeView.as_view()),
]
Which handler will process a request to "candies/Fudge"?
Assume that you have the following urlpatterns:
urlpatterns = [
path("", IndexView.as_view()),
path("candies", CandyView.as_view()),
path("candies/Fudge", FudgeView.as_view()),
]
Which handler will process a request to "candies/Fudge"?
Create a free account to access the full topic