新建flask專案。
設定除錯模式。
理解flask專案主程式。
使用裝飾器,設定路徑與函式之間的關係。
使用flask中render_template,用不同的路徑,返回首頁、登入員、註冊頁。
用檢視函式反轉得到url,},完成導航條裡的鏈結。
from flask importflask,render_template)'
/')def
index():
return render_template('
index.html')
'/login/')
deflogin():
return render_template('
login.html')
'/regist/')
defregist():
return render_template('
regist.html')
if__name__ == '
__main__':
doctype html
>
<
html
lang
="en"
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>首頁
title
>
head
>
<
body
>
<
a href
="">首頁
a>
<
a href
="/login"
>登入
a>
<
a href
="}"
>註冊
a>
<
h1>首頁
h1>
body
>
html
>
doctype html
>
<
html
lang
="en"
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>登入
title
>
<
link
href
="../static/css/denglu.css"
rel="stylesheet"
type
="text/css"
>
<
script
src="../static/js/denglu.js"
>
script
>
head
>
<
body
>
<
form
method
="post"
action
="index.html"
>
<
div
class
="box"
>
<
h1>使用者登入
h1>
<
div
class
="input_box1"
>
<
input
id="uname"
type
="text"
placeholder
="請輸入使用者名稱"
>
div>
<
div
class
="input_box2"
>
<
input
id="upass"
type
="password"
placeholder
="請輸入密碼"
>
div>
<
div
id="error_box"
><
br>
div>
<
div
class
="input_box"
>
<
button
onclick
="fnlogin()"
>登入
button
>
div>
div>
form
>
body
>
html
>
doctype html
>
<
html
lang
="en"
>
<
head
>
<
meta
charset
="utf-8"
>
<
title
>註冊
title
>
<
link
href
="../static/css/denglu.css"
rel="stylesheet"
type
="text/css"
>
<
script
src="../static/js/denglu.js"
>
script
>
head
>
<
body
>
<
form
method
="post"
action
="index.html"
>
<
div
class
="box"
>
<
h1>註冊
h1>
<
div
class
="input_box1"
>
<
input
id="uname"
type
="text"
placeholder
="請輸入使用者名稱"
>
div>
<
div
class
="input_box2"
>
<
input
id="upass"
type
="password"
placeholder
="請輸入密碼"
>
<
input
id="upass1"
type
="password"
placeholder
="請確認密碼"
>
div>
<
div
id="error_box"
><
br>
div>
<
div
class
="input_box"
>
<
button
onclick
="fnlogin()"
>登入
button
>
div>
div>
form
>
body
>
html
>
posted @
2017-11-03 20:10
林丹宜 閱讀(
...)
編輯收藏
開始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 ...