分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 教程案例

url设置

发布时间:2023-09-06 02:16责任编辑:彭小芳关键词:url
"""dailyfresh URL ConfigurationThe `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 adminfrom django.urls import pathfrom django.urls import includeurlpatterns = [ ???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 ConfigurationThe `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 adminfrom django.urls import path,re_pathfrom django.urls import includefrom user.views import register,ActiveView,LoginView,UserInfoView,UserOrderView,UserAddressViewfrom django.contrib.auth.decorators import login_requiredapp_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设置

原文地址:https://www.cnblogs.com/pengsq/p/9716027.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved