urls.py 1.0 KB

123456789101112131415161718192021222324252627282930
  1. """testthree URL Configuration
  2. The `urlpatterns` list routes URLs to views. For more information please see:
  3. https://docs.djangoproject.com/en/3.0/topics/http/urls/
  4. Examples:
  5. Function views
  6. 1. Add an import: from my_app import views
  7. 2. Add a URL to urlpatterns: path('', views.home, name='home')
  8. Class-based views
  9. 1. Add an import: from other_app.views import Home
  10. 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
  11. Including another URLconf
  12. 1. Import the include() function: from django.urls import include, path
  13. 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
  14. """
  15. from django.conf.urls import url
  16. from rest_framework_bulk.routes import BulkRouter
  17. from relation.views import *
  18. # 给智能路由注册
  19. # router = BulkRouter()
  20. # router.register(r'dept', DaptViews)
  21. # # router.register(r'post',PostViews)
  22. #
  23. # urlpatterns = router.urls
  24. urlpatterns = [
  25. url(r'^daptuser/', DaptUserViews.as_view()),
  26. url(r'^dapt/', DaptViews.as_view()),
  27. url(r'^user/', UserViews.as_view())
  28. ]