博客五部曲之一 - 简单博客
1409 浏览 6 years, 1 month
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>")