from django.shortcuts import render from django.shortcuts import HttpResponse # Create your views here. def robot(request): html = '家用机器人' return HttpResponse(html) def monitoring(request): html = '智能监控' return HttpResponse(html) def face(request): html = '人脸识别解决方案' return HttpResponse(html)