Handling URLs in Django
In Django, we use URL patterns to map URLs to views. We can define URL patterns in our app's urls.py file. Here's an example URL pattern for the post_list view:
python
from django.urls import path
from . import views
urlpatterns = [
path('', views.post_list, name='post_list'),
]
In this example, we define a URL pattern that maps the root URL ('') to the post_list view.
No comments:
Post a Comment