Home > Backend Development > Python Tutorial > 使用python Django做网页

使用python Django做网页

WBOY
Release: 2016-06-16 08:46:19
Original
1712 people have browsed it

1 、创建一个django项目
使用django-admin.py startproject MyDjangoSite 参考这里

2、建立视图

from django.http import HttpResponsedef hello(request):    return HttpResponse("我的第一个简单的python django项目。")

3、修改urls.py


我们为urlpatterns加上一行: (r‘^hello/$', hello), 这行被称作URLpattern,它是一个Python的元组。元组中第一个元素是模式匹配字符串(正则表达式);第二个元素是那个模式将使用的视图函数。
正则表达式字符串的开头字母“r”。 它告诉Python这是个原始字符串,不需要处理里面的反斜杠(转义字符)。一般在使用正则前加入"r"是一个好的习惯!

4、运行python manage.py runserver

怎样启动开发服务器可以看这里
http://127.0.0.1:8000/hello

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template