python在pychram中利用djingo开发helloword

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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进行API测试(接口测试)初级STEP 1

djingo之froms组件

Pychram - 使用介绍

Python基础知识+Pychram工具

window10安装python开发环境

Pychram 运行程序在 run 窗口和 python console 窗口之间切换