标签:one 自己 clu closed splay sed spl pen 用户名
from django.contrib import admin from django.urls import path from django.urls.conf import include urlpatterns = [ path(‘admin/‘, admin.site.urls), path(‘appa1/‘,include(‘app01.urls‘)), path(‘appb1/‘,include(‘app02.urls‘)) ]
from django.urls import path from . import views urlpatterns = [ path(‘indexa/‘,views.indexa),
from django.shortcuts import render from django.http import HttpResponse # Create your views here. def index(request): return HttpResponse(‘哈喽你个哈皮‘)
标签:one 自己 clu closed splay sed spl pen 用户名
原文地址:https://www.cnblogs.com/hy-74/p/12074725.html