博客五部曲之一 - 简单博客


1189 浏览 5 years, 4 months

10 第一个视图View

版权声明: 转载请注明出处 http://www.codingsoho.com/

首先写一个简单的基于功能的视图 function-based view

from django.http import HttpResponse

# Create your views here.
def post_home(request):
    return HttpResponse("<h1>hello</h1>")