from django.shortcuts import render from django.shortcuts import HttpResponse # Create your views here. def contact(request): html = '欢迎咨询' return HttpResponse(html) def recruit(request): html = '加入恒达' return HttpResponse(html)