标签:fbv python 处理 注意 报错 end for 继承 ret
urls.py
url(r'^login/', views.Login.as_view()), #类名.as_view()
views.py:
from django.views import View
class Login(View):
def get(self, request): #方法里必须有request来接受传过来的值不然会报错
return render(request, "login.html")
def post(self, request):
pass
当请求过来的时候, 会优先判断你的请求方法是GET还是POST, 如果是GET请求的话, 走GET函数, 反之, 走POSt函数
继承View类的时候会自动对传过来的参数进行判断
注意:
标签:fbv python 处理 注意 报错 end for 继承 ret
原文地址:https://www.cnblogs.com/pythonywy/p/11348016.html