所以我想看看用户是否匹配他们的旧密码,如果他们不匹配,那么它会给出一条消息说“你的旧密码不正确”但是如果他们匹配他们的旧密码那么它应该检查用户是否匹配新密码和确认密码正确,如果他们没有,那么它应该给出一条消息说“你的新密码不匹配”但如果他们的密码是空的,它应该说“你的新密码是空的,但即使我的密码不是空的总是说我的密码是空的。
我也试过 if new_password1 or new_password2 == ''
但也有同样的结果。
views.py
@login_required
def userchange(request):
if request.method == 'POST':
user = request.user
old_password = request.POST['Old password']
new_password1 = request.POST['New password1']
new_password2 = request.POST['New password2']
if user.check_password(old_password):
if new_password1 == new_password2:
if new_password1 or new_password2 is None:
return render(request, 'main/change.html', {'error':'Your new passwords are empty!'})
else:
user.set_password(new_password1)
return render(request, 'main/change.html', {'error':'Your password has been changed succesfully!'})
else:
return render(request, 'main/change.html', {'error':'Your new passwords do not match'})
else:
return render(request, 'main/change.html', {'error':'Your old password is incorrect'})
elif request.method == "GET":
return render(request, 'main/change.html')
change.html
<h1>Note: You will be logged out</h1>
<h2>{{ error }}</h2>
<form method="POST">
{% csrf_token %}
<input type="password" placeholder="Old password" name="Old password">
<input type="password" placeholder="New password" name="New password1">
<input type="password" placeholder="Confirm password" name="New password2">
<button type="submit">Change password</button>
</form>
答案 0 :(得分:3)
你需要改变
public void setOrientation(Activity activity) {
Get the DisplayMetrics for the phone;
calculate the screen size;
get configurations;
if (diagonalInches>=6.5 && tablet connected to hard keyboard){
set screen orientation
}
}
到
if new_password1 or new_password2 is None:
如果 if new_password1 is None or new_password2 is None:
是任何真值......它会评估 new_password1
: as new_password1 or new_password2 is None
... 这显然是 True ...(你也可能 True or new_password2 is None
而不是 == ''
)