1. 程式人生 > >Python的Django

Python的Django

.py doc ack star return tar 第一部分 openstac IT

1 第一部分目錄詳解

修改django的項目當中的url中的配置:

技術分享圖片
from django.contrib import admin
from django.conf.urls import url
from django.urls import path
from django.shortcuts import HttpResponse
def home(request):
    return HttpResponse(<h1>hello</h1>)
urlpatterns = [
    url(r^admin/, admin.site.urls),
    url(r
^h.html/, home), ]
View Code

技術分享圖片

需要輸入對應的頁面才可以訪問

技術分享圖片

技術分享圖片

技術分享圖片

#2 部分 創建APP

建議做django的時候 在比較幹凈的目錄做,不要目錄嵌套目錄

創建app

D:\Document\Python0404\Django0425>python manage.py startapp cmdb

D:\Document\Python0404\Django0425>python manage.py startapp openstack

創建完後進行一定的修改,將之前放在根下的url文件中內容進行修改:

修改如下:D:\Document\Python0404\Django0425\Django0425\urls.py

from django.contrib import admin
from django.conf.urls import url
from django.urls import path
from cmdb import views
urlpatterns = [
    url(r‘^admin/‘, admin.site.urls),
    url(r‘^h.html/‘, views.home),
]

  

修改D:\Document\Python0404\Django0425\cmdb\views.py

from django.shortcuts import HttpResponse
def home(request):
    return HttpResponse(‘<h1>hello This is CMDB</h1>‘)

  

Python的Django