You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
flyapps/fir_ser/fir_ser/urls.py

51 lines
2.1 KiB

"""fir_ser URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path,re_path,include
from rest_framework.routers import DefaultRouter
# from api.views.course import CourseView,CourseDetailView,CourseCategoryView
from api.views.login import LoginView
from api.views.logout import LogoutView
from api.views.captcha import CaptchaView
# from api.views.shoppingcart import ShoppingCarView
# from api.views.account import AccountView
# from api.views.payment import PaymentView
# from api.views.payment import get_pay_url
# from api.views.order import OrderView
# from api.views.trade import AlipayTradeView
# router=DefaultRouter()
# router.register("courses", CourseView)
# router.register("coursedetail", CourseDetailView)
# router.register("course/category", CourseCategoryView)
from django.views.static import serve
from fir_ser import settings
from api.views.download import DownloadView
urlpatterns = [
path('fly.admin/', admin.site.urls),
# path("",include(router.urls)),
path("api/v1/fir/server/", include('api.urls')),
# re_path("shoppingcar/",ShoppingCarView.as_view()),
# re_path("account/",AccountView.as_view()),
# re_path("payment/",PaymentView.as_view()),
# re_path("myorder/",OrderView.as_view()),
# re_path("get_pay_url/",get_pay_url),s
# re_path("api/v1/trade/alipay/",AlipayTradeView),
# media路径配置
re_path(r'files/(?P<path>.*)$', serve, {'document_root': settings.MEDIA_ROOT}),
re_path("download/(?P<filename>\w+\.\w+)$", DownloadView.as_view(),name="download"),
]