创建hello模块
    >>>python manage.py startapp hello

    完成第一个页面:
    步骤:
    1.在view.py文件写个函数

    1. # Create your views here.
    2. def hello_world(request):
    3. print(request)
    4. return HttpResponse('hello world')

    2.在urls.py中配置规则

    1. urlpatterns = [
    2. path('admin/', admin.site.urls),
    3. path('hello/',hello_world)
    4. ]

    URL设计:
    1.正则表达式
    2.指定参数类型

    URL常用配置:
    path(route,view,name,**kwargs)函数
    include(urls,namespace)函数 模块化开发
    参数介绍:
    urls:URL匹配规则列表
    namespace:命名空间

    image.png
    然后在根下通过lnclude引用:
    image.png
    最后访问:
    image.png

    通过reverse函数逆向解析

    1. def hello_world(request):
    2. print(reverse('hello_world'))
    3. return HttpResponse('hello world')