您好,登錄后才能下訂單哦!
實現倒計時跳轉要和html中的js結合起來,
例如:實現一個頁面簡單的注冊,然后注冊成功后倒計時自動跳轉到登錄頁面。
# 注冊頁面 def register(request): return render(request,"register.html") # 點擊注冊 def doregister(request): # 獲得用戶輸入的信息,保存到數據庫 username=request.GET.get("username") password=request.GET.get("password") surepwd=request.GET.get("surepwd") age=request.GET.get("age") # 判斷密碼 if surepwd==password : # 創建一個對象 user = User() user.u_name = username # user.u_password=password # 創建md5對象 MD5 = hashlib.md5() # 將一個二進制數據進行md5處理,生成一個128位的二進制數據 MD5.update(password.encode("utf-8")) # 將二進制結果轉換成 十六進制的結果,4位二進制轉換成1位十六進制 passwd = MD5.hexdigest() user.u_password = passwd user.u_age = int(age) # token是唯一的 # 生成一個無法重復的標識 user.u_token = createToken() user.save() return render(request,'pageJump.html') else: return render(request,'register.html',context={"alert":1})
return render(request,‘pageJump.html')用來請求實現自動跳轉的頁面。
<body> <p>注冊成功!還有<span id="sp">5</span>秒跳轉到登錄界面...</p> <script> onload=function () { setInterval(go,1000) }; var x=4; function go() { if (x>=0){ document.getElementById("sp").innerText=x; }else { location.href="/day06/index" rel="external nofollow" rel="external nofollow" ; } x--; } </script> </body>
setInterval(go,1000)設置定時器,1秒執行一次go函數,當x小于0時,執行 location.href="/day06/index" rel="external nofollow" rel="external nofollow" ;這樣就能跳轉到登錄頁面,去執行登錄操作了
以上這篇在django中實現頁面倒數幾秒后自動跳轉的例子就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。