新建flask專案。
設定除錯模式。
理解flask專案主程式。
使用裝飾器,設定路徑與函式之間的關係。
使用flask中render_template,用不同的路徑,返回首頁、登入員、註冊頁。
用檢視函式反轉得到url,},完成導航條裡的鏈結。
from flask import flask,render_templateindex:def index():
return render_template('index.html')
def zhuce():
return render_template('zhuce.html')
def denglu():
return render_template('denglu.html')
if __name__ == '__main__':
doctype html登入:>
<
html
lang
="en"
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>首頁
title
>
head
>
<
body
>
<
h1>首頁
h1>
<
a href
="">登入
a>
<
a href
="">註冊
a>
body
>
html
>
doctype html註冊:>
<
html
lang
="en"
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>登入介面
title
>
<
link
href
="../static/css/vvv.css"
rel="stylesheet"
type
="text/css"
>
<
script
src="../static/js/ggg.js"
>
script
>
head
>
<
body
>
<
div
class
="div1"
>
<
div
class
="div2"
>登入
div>
<
div
class
="div3"
>
<
div
class
="iconfont ic-user"
>
div> 使用者:<
input
id="username"
type
="text"
placeholder
="請輸入使用者名稱"
>
div>
<
div
class
="div3"
>
密碼:<
input
id="userpass"
type
="text"
placeholder
="請輸入密碼"
>
div>
<
div
id="error_box"
><
br>
div>
<
div
class
="div3"
>
<
button
onclick
="mylogin()"
>登陸
button
>
div>
div>
<
br>
body
>
html
>
doctype html>
<
html
lang
="en"
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>介面
title
>
<
link
href
="../static/css/yyy.css"
rel="stylesheet"
type
="text/css"
>
<
script
src="../static/js/rrr.js"
>
script
>
head
>
<
div
class
="div1"
>
<
div
class
="div2"
>註冊
div>
<
div
class
="div3"
>
請輸入你的暱稱:
<
input
id="username"
type
="text"
placeholder
="請輸入你的暱稱"
>
div>
<
div
class
="div3"
>
設定密碼:
<
input
id="userpass"
type
="text"
placeholder
="請輸入密碼"
>
div>
<
div
class
="div3"
>
重複密碼:
<
input
id="userpass1"
type
="text"
placeholder
="請再次輸入密碼"
>
div>
<
div
class
="div3"
>
請輸入手機號:
<
input
id="phonenumber"
type
="text"
placeholder
="請輸入11位手機號"
>
div>
<
div
id="error_box"
><
br>
div>
<
div
class
="div3"
>
<
button
onclick
="mylogin()"
>註冊
button
>
div>
<
div
class
="div2"
>點選 「註冊」 即表示您同意並願意遵守<
br>使用者協議 和 隱私政策 。
開始Flask專案
新建flask專案。設定除錯模式。理解flask專案主程式。使用裝飾器,設定路徑與函式之間的關係。使用flask中render template,用不同的路徑,返回首頁 登入員 註冊頁。用檢視函式反轉得到url,完成導航條裡的鏈結。from flask import flask,render tem...
開始Flask專案
新建flask專案。設定除錯模式。理解flask專案主程式。使用裝飾器,設定路徑與函式之間的關係。使用flask中render template,用不同的路徑,返回首頁 登入員 註冊頁。用檢視函式反轉得到url,完成導航條裡的鏈結。from flask import flask,render tem...
Flask練手專案《愛家租房》 從開始 到總結
ps 有原始碼 但是都是一團糟js js 寫不到點子上 html html 跳轉異常 前天 10.14 經歷了半天 修改好了登入註冊,實在是無力在繼續改下去 拿著靜態資源 去flask 進行二次開發 截止目前為止,除去登入驗證碼,和redis 快取手機驗證碼,基本功能已實現 begingithub ...