十九django框架urls的子路径include

Posted yanyan-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了十九django框架urls的子路径include相关的知识,希望对你有一定的参考价值。

django可以在每个子项目中添加自己的urls文件,然后再用include把路径包含进去

from django.contrib import admin
from django.urls import path,include

from example import urls #导入需要使用的urls文件

urlpatterns = [
    path(admin/, admin.site.urls),
    path(example/, include(urls)),#例子url,访问的时候就是/example/book,多了一层目录
]

 

 

以上是关于十九django框架urls的子路径include的主要内容,如果未能解决你的问题,请参考以下文章

python 之 Django框架(路由系统include命名URL和URL反向解析命名空间模式)

django rest 框架中的路径错误:不支持在 include() 中指定命名空间而不提供 app_name

开源web框架django知识总结(十九)

开源web框架django知识总结(十九)

开源web框架django知识总结(十九)

Django框架(十九)—— 序列化组件(serializer)