码迷,mamicode.com
首页 > 其他好文 > 详细

django-include函数

时间:2019-10-24 15:22:18      阅读:355      评论:0      收藏:0      [点我收藏+]

标签:django   mod   news   name   文件   ext   include   style   port   

三种格式:
(1)incude(module,namespace=None)

from django.urls import path,include
from book import urls
urlpatterns={
  path(‘‘,include(urls))                
}

module:模型文件,namespace:实例命名空间

(2)include(pattern_list)

from django.urls import path,include
from . import views
extractpatterns={
  path(‘‘,views.index,name=index) ,
  path(index/,views.index,name=index),   
  path(‘‘home/,views.index,name=index), 
}
urlpatterns={
  path(index/,include(extracpatterns),name=index)                
}

pattern_list:可迭代的path()或re_path()清单

(3)include((pattern_list,app_namespace),namespace)

app_namespace:app命名空间

from django.urls import path,include
from . import views
extractpatterns={
  path(‘‘,views.index,name=index) ,
  path(index/,views.index,name=index)   
  path(‘‘home/,views.index,name=index) 
}
urlpatterns={
  path(index/,include((extracpatterns,newsapp)),name=index)                
}

 

django-include函数

标签:django   mod   news   name   文件   ext   include   style   port   

原文地址:https://www.cnblogs.com/xiximayou/p/11732234.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!