Correct handle

Report a typo

Assume that you have the following URL patterns:

urlpatterns = [path("candies/Fudge", FudgeView.as_view()),
               path("candies", CandyView.as_view()),
               re_path("", IndexView.as_view())]

Which handler will process a request to "candies"?

Select one option from the list
___

Create a free account to access the full topic