Django 学习笔记(2)

新博客地址:http://gorthon.sinaapp.com/

现在开始写一个Hello World!

1. newtest目录新建helloworld.py

from django.http import HttpResponse def index(repuest): return HttpResponse('Hello World!') 

2. url.py添加url映射如下:

urlpatterns = patterns('',

    #此处省略了上面的代码,注意下面末尾的逗号要写上

    (r'^helloworld/,'newtest.helloworld.index'),
) 

3. cd到newtest目录,运行命令manage.py runserver

浏览器输入网址http://127.0.0.1:8000/helloworld/

 

你可能感兴趣的:(Django 学习笔记(2))