响应HTML内容

    1. def hello_world(request):
    2. html='<html><body><p style="color:red">这个是标题</p></body></html>'
    3. return HttpResponse(html)

    获取URL参数(通过month获取url参数)

    1. #视图函数
    2. def article(request,month):
    3. return HttpResponse('article:'+str(month))
    1. #urls.py
    2. urlpatterns = [
    3. path('world/',hello_world,name='hello_world'),
    4. path('article/<int:month>',views.article,name='article_list')
    5. ]

    获取URL中的正则匹配的参数

    1. 比如月份:
    2. re_path(r'^article/(?p<month>0?[1-9]|1[012]/$)',views.article,name='article_list')

    获取get参数

    1. 输入URL:
    2. http://127.0.0.1:8000/search?name=五月天
    3. 视图编写:
    4. def search(request):
    5. name=request.GET.get('name',None)