创建hello模块
>>>python manage.py startapp hello
完成第一个页面:
步骤:
1.在view.py文件写个函数
# Create your views here.
def hello_world(request):
print(request)
return HttpResponse('hello world')
2.在urls.py中配置规则
urlpatterns = [
path('admin/', admin.site.urls),
path('hello/',hello_world)
]
URL设计:
1.正则表达式
2.指定参数类型
URL常用配置:
path(route,view,name,**kwargs)函数
include(urls,namespace)函数 模块化开发
参数介绍:
urls:URL匹配规则列表
namespace:命名空间
然后在根下通过lnclude引用:
最后访问:
通过reverse函数逆向解析
def hello_world(request):
print(reverse('hello_world'))
return HttpResponse('hello world')