包含应用 URL 并命名路由
使用 include(),并为路由命名以便调用 reverse()
包含应用 URL 并命名路由 是 CoddyKit 上的免费 Django Academy 课时。 这是第 4 节课,共 4 节。 你可以在下方免费阅读本课时的完整内容 — 然后在浏览器中使用内置代码编辑器和全天候 AI 导师进行实践。 这是 Django Academy 学习路径的一部分,你的进度在网页和 CoddyKit 应用中同步。 Django Academy 课程共包含 4 节课。
本课时的部分内容尚未翻译,以英文显示。
Two Levels of URLs
Django splits routing into the project's urls.py and each app's own. The project includes app URLs to keep things tidy.
Why Apps Get Their Own urls.py
Giving each app its own URL file keeps routes reusable and self-contained. You can drop an app into any project cleanly.
Importing include
To delegate to an app, you use include. Import it alongside path from django.urls in the project file.
from django.urls import path, includeWiring Up include()
In the project urls.py, point a prefix at an app's URL module with include. All its routes hang under that prefix.
path('blog/', include('blog.urls'))How Prefixes Combine
The project prefix joins the app route. So blog/ plus an app route of post/ serves the full path blog/post/.
Naming a Route
Give each route a name so you never hardcode its URL. You refer to the route by this stable name everywhere else.
path('about/', views.about, name='about')Why Names Beat Hardcoding
If a URL changes, hardcoded links break. A named route lets you change the path once and every link still works.
reverse() in Python
Use reverse to build a URL from a route name in your view code. Django returns the current path for that name.
from django.urls import reverse
url = reverse('about')app_name and Namespaces
Set app_name in an app's urls.py to namespace its routes. Then names look like blog:detail, avoiding clashes between apps.
app_name = 'blog'Referencing Namespaced Routes
With a namespace set, you reference routes as namespace:name. This keeps blog:detail and shop:detail clearly separate.
reverse('blog:detail')The redirect Shortcut
The redirect helper also accepts a route name. Send users somewhere by name instead of a fragile literal path.
from django.shortcuts import redirect
return redirect('about')Quick Check
Recall what include() does in the project's urls.py.
Recap: Include and Name
Use include to mount app URLs under a prefix, and name routes so reverse and redirect stay solid when paths change. 🧭
常见问题解答
「包含应用 URL 并命名路由」课时是免费的吗?
是的 — 「包含应用 URL 并命名路由」的完整文本可在网页上免费阅读。要进行交互式练习(内置代码编辑器和全天候 AI 导师)并解锁 Django Academy 课程的其余内容,请升级到 CoddyKit PRO。 Django Academy 课程共包含 4 节课。
「包含应用 URL 并命名路由」这节课中我会学到什么?
使用 include(),并为路由命名以便调用 reverse() 你通过在浏览器中直接运行的动手代码来练习 Django Academy,全天候 AI 导师会在你学习这节课的过程中回答你的问题。
学习 Django Academy 需要有经验吗?
无需任何先前经验。CoddyKit 上的 Django Academy 课程适合初学者到高级学习者,你可以从这里开始或从头开始,按照自己的节奏学习。 这是第 4 节课,共 4 节。
「包含应用 URL 并命名路由」课时需要多长时间?
大多数 CoddyKit 课程大约需要 5–10 分钟。每节课都很精短且互动,所以你能稳步进步,并在网页和应用中从离开的地方继续。
我能在这节 Django Academy 课中编写并运行代码吗?
能。每节 Django Academy 课都包含内置代码编辑器,你可以在浏览器中直接编写并运行真实代码,并获得即时 AI 反馈 — 无需本地设置。
此课程中的所有课时
- 编写基于函数的视图
- 使用 path() 定义 URL 模式
- 捕获 URL 参数
- 包含应用 URL 并命名路由