标签:project class log pattern example add port 富文本 pac
"""dailyfresh URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.1/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 from django.urls import include urlpatterns = [ path(‘admin/‘, admin.site.urls), path(‘tinymce‘,include(‘tinymce.urls‘)), #富文本编辑器 path(‘user/‘,include(‘user.urls‘,namespace=‘user‘)), #用户模块 path(‘cart/‘,include(‘cart.urls‘,namespace=‘cart‘)), #订单模块 path(‘order/‘,include(‘order.urls‘,namespace=‘order‘)), #订单模块 path(‘‘,include(‘goods.urls‘,namespace=‘goods‘)), #商品模块 ]
"""dailyfresh URL Configuration The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/2.1/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 from django.urls import include from user.views import register,ActiveView,LoginView,UserInfoView,UserOrderView,UserAddressView from django.contrib.auth.decorators import login_required app_name = ‘user‘ urlpatterns = [ # path(‘register‘,views.register,name=‘register‘),#注册 # path (‘register_handle‘,views.register_handle,name=‘register_handle‘), #注册处理 path(‘register/‘,register.as_view(),name=‘register‘), re_path(‘active/(?P<token>.*)/‘,ActiveView.as_view(),name=‘active‘), # path(‘active/‘, ActiveView.as_view(), name=‘active2‘), path(‘login/‘,LoginView.as_view(),name=‘login‘), path(‘‘,UserInfoView.as_view(),name=‘user‘),#用户中心-信息页 path(‘order‘,UserOrderView.as_view(),name=‘order‘),#用户中心-订单页 path(‘address‘,UserAddressView.as_view(),name=‘address‘),#用户中心地址页 ]
标签:project class log pattern example add port 富文本 pac
原文地址:https://www.cnblogs.com/pengsq/p/9716027.html