6-视图

Posted xymaxbf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6-视图相关的知识,希望对你有一定的参考价值。

view.py

from django.shortcuts import render
from django.http import HttpResponse

# Create your views here.
def first_view(request):
    html=<p>Hello World!</p>
    return HttpResponse(html)

urls.py

from django.contrib import admin
from django.urls import path
from firstApp import views

urlpatterns = [
    path(admin/, admin.site.urls),
    path(view/hello/,views.first_view)
]

技术图片

 

 为每一个应用单独定制一个urls.py,并集中通过include汇总到项目中的urls.py中

为应用新建一个urls.py

from django.urls import path
from firstApp import views

urlpatterns = [
    path(hello/,views.first_view),
]

 

项目总urls.py

from django.contrib import admin
from django.urls import path, include

urlpatterns = [
    path(admin/, admin.site.urls),
    path(firstapp/,include(firstApp.urls))
]

 

这样,以firstapp开头的请求都会转移给firstapp应用的urls.py去处理

 

 

 

 

 

 

(未完待续,,,,,,,)

以上是关于6-视图的主要内容,如果未能解决你的问题,请参考以下文章

需要一种有效的方法来避免使用 Laravel 5 重复代码片段

保存以编程方式为片段创建的视图并在 onresume 中恢复

回收站视图未显示在片段中

如何从片段内的列表视图打开链接网址?

如何使列表视图出现在片段中?

如何从活动中更改片段中视图的可见性