编写view页面
def hello(request): return render(request,'hello.html')
编写html页面
hi hello
编写路由
from django.conf.urls import urlfrom django.contrib import adminfrom hello.views import *urlpatterns = [ url(r'^admin/', admin.site.urls), url(r'^hello/', hello),]