Django 创建APP - 简单路由系统案例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django 创建APP - 简单路由系统案例相关的知识,希望对你有一定的参考价值。

架构图:

技术分享

 

setting.py:

技术分享
INSTALLED_APPS = [
    ...
    bootstrap,
]
View Code

 

myapp -> myapp -> urls.py

技术分享
from django.conf.urls import url, include
from django.contrib import admin


urlpatterns = [
    url(r^admin/, admin.site.urls),
    url(r^bootstrap/, include(bootstrap.urls)),
    
]
View Code

 

myapp -> bootstrap -> urls.py

技术分享
from django.conf.urls import url
from . import views

urlpatterns = [
    url(r^$, views.index, name=index),
    url(r^helloworld/, views.helloworld, name=helloworld),
    
]
View Code

 

myapp -> bootstrap -> views.py

技术分享
from django.shortcuts import render

# Create your views here.
from django.http import   HttpResponse




def helloworld(request):
    return HttpResponse("Hello   world")

def index(request):
    return HttpResponse("Hello, world. You‘re at the polls index.")
View Code

 

截图一: index

技术分享

截图二: helloworld

技术分享

 

以上是关于Django 创建APP - 简单路由系统案例的主要内容,如果未能解决你的问题,请参考以下文章

1-3.Win10系统利用Pycharm社区版安装Django搭建一个简单Python Web项目的步骤之三

Python笔记——Django路由系统

Django_简单的数据库交互案例

Django 之 include包含其它urls

Django

Django的View(视图)和路由系统