普通Form表单的提交
<!...error["password"] = "密码不能小于5"
return render(request,"index.html",{"error":error})
Form实现登录表单...request, "index.html", {"form": form})
return render(request, "index.html", {"form": form})
其他常用Form表单...choices=( (1,"篮球"),(2,"足球"),(3,"乒乓球"),(4,"滚球")),
widget=widgets.RadioSelect()
)
select...initial=1,
choices=( (1,"篮球"),(2,"足球"),(3,"乒乓球"),(4,"滚球")),
widget=widgets.Select