作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用命令提示符运行我的 python 服务器,其中显示下面的打印语句(如果到达)。如何在模板 login.html
def home(request):
templatename="login.html"
if request.method=="POST":
u=request.POST.get("username")
p=request.POST.get("password")
user=authenticate(username=u, password=p)
if user is not None:
if user.is_active:
print "This User is valid, active and authenticated"
login(request,user)
return HttpResponseRedirect("/welcome/")
else:
print("This User is valid but the account has been disabled")
else:
print("The Username and Password entered were incorrect")
else:
user=None
return render_to_response(templatename,{'user': user},RequestContext(request))
最佳答案
将要在模板 login.html
上显示的语句存储在变量(此处为“状态”)中,如下所示:
def home(request):
templatename="login.html"
if request.method=="POST":
u=request.POST.get("username")
p=request.POST.get("password")
user=authenticate(username=u, password=p)
if user is not None:
if user.is_active:
state="This User is valid, active and authenticated"
login(request,user)
return HttpResponseRedirect("/welcome/")
else:
state="This User is valid but the account has been disabled"
else:
state="The Username and Password entered were incorrect"
else:
user=None
return render_to_response(templatename,{'user': user,'state':state},RequestContext(request))
将字典中的状态传递给render_to_response()。
访问 login.html
页面中的状态为 {{state}}。
你的工作已经完成。
关于python - 如何在html页面上添加注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25226045/
我是一名优秀的程序员,十分优秀!