urls.py 438 B

123456789101112
  1. from django.urls import path
  2. from . import views
  3. app_name = 'serviceApp'
  4. urlpatterns = [
  5. path('download/', views.download, name='download'), # 资料下载
  6. path('platform/', views.platform, name='platform'), # 人脸识别开放平台
  7. path('getDoc/<int:id>/',views.getDoc,name='getDoc'),
  8. path('facedetect/',views.facedetect,name='facedetect'),
  9. path('facedetectDemo/',views.facedetectDemo,name='facedetectDemo'),
  10. ]