开始Flask项目
Posted yishhaoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了开始Flask项目相关的知识,希望对你有一定的参考价值。
新建Flask项目。
2。设置调试模式。
3.理解Flask项目主程序。
4.使用装饰器,设置路径与函数之间的关系。
5.使用Flask中render_template,用不同的路径,返回首页、登录员、注册页。
6.用视图函数反转得到URL,url_for(‘login’),完成导航里的链接。
from flask import Flask, render_template app = Flask(__name__) @app.route(\'/\') def myweb(): return render_template("myweb.html") @app.route(\'/login/\') def login(): return render_template("login.html") @app.route(\'/regist/\') def regist(): return render_template("regist.html") if __name__ == \'__main__\': app.run(debug=True)
<a href="{{ url_for(\'login\') }}"> <button type="button" class="lbutton"> 登录 </button> </a> <a href="{{ url_for(\'login\') }}"> <button type="button" class="rbutton"> 注册 </button> </a>
截图:
以上是关于开始Flask项目的主要内容,如果未能解决你的问题,请参考以下文章