Python Day16 Django

來源:互聯網
上載者:User

標籤:Django

建立Django項目的簡單流程建立一個django project

django-admin startproject 項目名
在項目名目錄下建立應用
python manage.py startapp blog
在project/settings.py中加入app

INSTALLED_APPS = [    ‘django.contrib.admin‘,    ‘django.contrib.auth‘,    ‘django.contrib.contenttypes‘,    ‘django.contrib.sessions‘,    ‘django.contrib.messages‘,    ‘django.contrib.staticfiles‘,    ‘app01.apps.App01Config‘, #類似這樣]
設計url

在project/urls.py中
from app01.views import * #由於把模板放在了app/views.py中,因此這裡需要引入
url(r‘^timer/‘, timer), # timer(request)

構建視圖函數

在app/views.py中
先引入HttpResponse

from django.shortcuts import render,HttpResponsedef timer(request):    import time    ctime=time.time()    return render(request,"timer.html",{"ctime":ctime})
建立模板

在templates中建立timer.html

<p>目前時間:{{ ctime }}</p>

啟動django項目

命令列啟動:
python manage.py runserver 8080 #此處注意python這個命令的環境變數
在pycharm中啟動:

Python Day16 Django

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.