url设置
Posted pengsq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了url设置相关的知识,希望对你有一定的参考价值。
"""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‘),#用户中心地址页 ]
以上是关于url设置的主要内容,如果未能解决你的问题,请参考以下文章
结合两个代码片段?将用户输入的 Youtube url 转换为嵌入 url,然后将 iframe src 替换为转换后的 url