码迷,mamicode.com
首页 > 编程语言 > 详细

python在pychram中利用djingo开发helloword

时间:2017-03-09 15:40:46      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:python在pychram中利用djingo开发helloword

首先安装pycheam,python,djingo。

在pychram中新建一个djingo项目

技术分享

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

技术分享

接下来在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/

技术分享

本文出自 “matengbing” 博客,请务必保留此出处http://matengbing.blog.51cto.com/11395502/1904768

python在pychram中利用djingo开发helloword

标签:python在pychram中利用djingo开发helloword

原文地址:http://matengbing.blog.51cto.com/11395502/1904768

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!