Python + Django筆記 1 *

來源:互聯網
上載者:User

標籤:

進入python環境,輸入:

1 >>> pip install django

等待安裝完成就可以使用django了。

本文使用的版本:python 2.7.9,django 1.8.0

 

建立項目:

在命令模式下,輸入:

> django-admin.py startproject mysite 

就會在目前的目錄建立一個名字為mysite的項目。

django內建一個開發用伺服器,專門用來測試。依然是在命令環境下,進入mysite,輸入:

> python manage.py runserver

此時在瀏覽器中輸入地址:127.0.0.1:8000即可進入測試頁面。

 

添加應用:

在\mysite下輸入:

> python manage.py startapp hello

就會建立一個名為hello的應用。但是需要一點小設定才能使用它。

首先進入\mysite\mysite,在settings.py中的INSTALLED_APP裡添加:

‘hello‘,

在urls.py中添加一個映射:

url(r‘^hello/$‘, ‘hello.views.index‘, name = ‘index‘),

進入\mysite\hello,在views.py中添加:

from django.http import HttpResponsedef index(req):    return HttpResponse(‘<hl>hello,world</hl>‘)

完成之後可以開啟瀏覽器看一下成果,地址為127.0.0.1:8000/hello

Python + Django筆記 1 *

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.