摘要: <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <script scr="static/js/jquery.js"></script> <script> $(document).rea 阅读全文
posted @ 2021-03-15 14:49 沈海 阅读(400) 评论(0) 推荐(0)
摘要: def show(request): i_all = Info.objects.all() if request.method =="GET": return render(request,"show.html",{"i_all":i_all}) else: name = request.POST. 阅读全文
posted @ 2021-03-15 14:45 沈海 阅读(59) 评论(0) 推荐(0)
摘要: def login(request): if request.method =="GET": return render(request,"login.html") else: eamil = request.POST.get("eamil") password = request.POST.get 阅读全文
posted @ 2021-03-15 14:42 沈海 阅读(41) 评论(0) 推荐(0)