开发者学堂课程【Python Web 框架 Flask 快速入门:综合案例1-案例演示和思路分析】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/603/detail/8798
综合案例1-案例演示和思路分析
内容简介:
一、 综合案例-图书管理
一、 综合案例-图书管理
创建模板:
from lask import Flask , render_template
app = Flask(_name_)
1.配置数据库
2.添加书和作者模型
3.添加数据
4.使用模板显示数据库查询的数量
5.使用 WTF 显示一个表单
6.实现相关的增删逻辑
…
@app.route(‘/’)
def index():
return render_template(‘books.html’)
if _name_ == ‘_main_’:
app.run(debug=Ture)