1、資料庫資料截圖
2、登入介面
3、登入失敗停留在登入介面
4、登入成功進入主介面
核心**:
#登陸介面
def login(request):
return render(request,'news/login.html')
#登陸成功跳轉的首頁
def success(request):
return render(request, 'news/success.html')
#登陸驗證
def login_check(request):
# dic =
reg = request.post.get('user')
password = request.post.get('password')
dic = userinfo.objects.get(user=reg)
if dic.psw == password:
return httpresponseredirect('/success') #跳轉介面到success介面
else:
return httpresponseredirect('/login') #賬號或是密碼錯誤依舊停留在輸入介面
login.html
資源綜合 登入mysql資料庫 登入mysql資料庫
二 登入mysql 1 以 windowns 命令方式登入 首先 在 cmd命令裡 切換到mysql的bin目錄下 c program files mysql mysql server 8.0 bin cd c program files mysql mysql server 8.0 bin c p...
資料庫登入
知識 一 mysql資料庫的備份命令 1 找到mysql安裝路徑下的bin檔案 2 在cmd命令視窗,cd到mysql安裝路徑下的bin檔案 3 輸入以下命令 mysqldump hlocalhost uroot p otpdb 1 otpdb 1.sql 4 則資料庫otpdb 1便被備份到bin...
Django使用資料庫實現登入
1.models.py class users models.model password models.charfield max length 100,verbose name 使用者名稱 account models.charfield max length 100,verbose name ...