詳解python在pychram中利用djingo開發helloword

高洛峰
發布: 2017-03-10 16:54:33
原創
2187 人瀏覽過

這篇文章詳解python在pychram中利用djingo開發helloword

首先安裝pycheam,python,djingo。

在pychram中新建一個djingo專案

詳解python在pychram中利用djingo開發helloword

#在web2目錄下新建views.py文件,目錄如下:

詳解python在pychram中利用djingo開發helloword

接下來在views.py檔中寫helloworld程式碼:

# -*- coding: utf-8 -*
from django.http import HttpResponse
 
def hello(request):
    return HttpResponse("Hello world! This is my first trial. [笔记]")
登入後複製

還需要設定urls.py檔完成映射

from django.conf.urls import patterns, include, url
from web2.views import hello
from django.contrib import admin
from django.conf.urls import *
admin.autodiscover()
 
urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'web2.views.home', name='home'),
    # url(r'^blog/', include('blog.urls')),
 
    url(r'^admin/', include(admin.site.urls)),
    ('^hello/$', hello),
)
登入後複製

一定要先匯入hello

#from web2.views import hello

然後啟動項目,在瀏覽器開啟

http://127.0.0.1:8000/hello/

詳解python在pychram中利用djingo開發helloword

#

以上是詳解python在pychram中利用djingo開發helloword的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!