2017-11-6 Django

關於cmd:html

返回上一層:    cd..python

切換到D盤: d:正則表達式

進入目錄: cd:C:\Python27\Scripts\HelloWorddjango

 

安裝好Django後第一個程序:瀏覽器

一、cmd進入安裝django目錄服務器

二、輸入:python manage.py runserver 0.0.0.0:8000app

三、瀏覽器 輸入:127.0.0.1:8000函數

It worked!

Congratulations on your first Django-powered page.

Next, start your first app by running python manage.py startapp [app_label].this

You're seeing this message because you have DEBUG = True in your Django settings file and you haven't configured any URLs. Get to work!  url

出現上面的字樣,表示成功。

 創建一個view.py

from django.http import HttpResponse
 
def hello(request):
    return HttpResponse("Hello world ! ")

修改urls.py文件

from django.conf.urls import url
 
from . import view
 
urlpatterns = [
    url(r'^$', view.hello),
]

完成後,啓動 Django 開發服務器,並在瀏覽器訪問打開瀏覽器並訪問:http://127.0.0.1:8000

url() 函數的使用

Django url() 能夠接收四個參數,分別是兩個必選參數:regex、view 和兩個可選參數:kwargs、name,接下來詳細介紹這四個參數。

  • regex: 正則表達式,與之匹配的 URL 會執行對應的第二個參數 view。

  • view: 用於執行與正則表達式匹配的 URL 請求。

  • kwargs: 視圖使用的字典類型的參數。

  • name: 用來反向獲取 URL。

url(r'^&')^&中間就是網址的尾綴,view.hello :就是view裏面的方法例如

url(r'^hello&view.view.hello)

網址爲:http:/127.0.0.1:8000/hello引用view裏面的hello方法

 使用

Django 模板

hello.html 文件代碼以下:

HelloWorld/templates/hello.html 文件代碼:

<h1>{{ hello }}</h1>

  修改:settings.py  特別注意:修改頭應該加上# -*- coding: utf-8 -*-,緣由:裏面有 # 修改位置,這是中文哦!!!

...TEMPLATES = [
    {
        'BACKEND': 'django.template.backends.django.DjangoTemplates',
        'DIRS': [BASE_DIR+"/templates",],       # 修改位置
        'APP_DIRS': True,
        'OPTIONS': {
            'context_processors': [
                'django.template.context_processors.debug',
                'django.template.context_processors.request',
                'django.contrib.auth.context_processors.auth',
                'django.contrib.messages.context_processors.messages',
            ],
        },
    },
]
...

修改view.py 

# -*- coding: utf-8 -*-
 
#from django.http import HttpResponse
from django.shortcuts import render
 
def hello(request):
    context          = {}
    context['hello'] = 'Hello World!'
    return render(request, 'hello.html', context)

  訪問:http://127.0.0.1:8000

相關文章
相關標籤/搜索