from django.shortcuts import render from django.shortcuts import HttpResponse # Create your views here. def download(request): html = '资料下载' return HttpResponse(html) def platform(request): html = '人脸识别开放平台' return HttpResponse(html)