博客五部曲之一 - 简单博客
1379 浏览 5 years, 11 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>")