8 lines
160 B
Python
8 lines
160 B
Python
from django.shortcuts import render
|
|
|
|
|
|
# Create your views here.
|
|
def index(request):
|
|
print("页面请求处理中")
|
|
return render(request, 'index.html')
|