from flask import Flask,render_template,request,redirect
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy.sql import and_
import pymysql
app = Flask(__name__) # 实例化Flask对象
# 基本配置
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True
app.config['SQLALCHEMY_DATABASE_URI'] = (
'mysql+pymysql://root:root@localhost/flask_demo'
)
db = SQLAlchemy(app) # 实例化SQLAlchemy
class Hotel(db.Model):
''' Hotel表模型'''
__tablename__ = 'hotel' # 表名
id = db.Column(db.Integer,primary_key=True) # 主键ID
name = db.Column(db.String(64)) # 名称
level = db.Column(db.Integer) # 等级
brand = db.Column(db.String(64)) # 品牌
features = db.Column(db.String(64)) # 特色
score = db.Column(db.Float) # 评分
price = db.Column(db.Float) # 最低价
decorate_time = db.Column(db.Date) # 装修日期
@app.route('/hotel')
def index():
# 获取所有品牌并去重
brand_list = db.session.query(Hotel.brand).distinct()
# 获取所有酒店特色并去重
features_list = db.session.query(Hotel.features).distinct()
condition = (Hotel.id > 0)
# 根据条件筛选酒店信息
if request.args.get('level'): # 等级
level = request.args.get('level')
condition = and_(condition,Hotel.level==level)
if request.args.get("brand"): # 品牌
brand = request.args.get('brand')
condition = and_(condition, Hotel.brand==brand)
if request.args.get("features"): # 特色
features = request.args.get("features")
condition = and_(condition, Hotel.features==features)
# 排序方式
if request.args.get("tag"):
order_string = request.args.get("tag") + ' desc'
else :
order_string = 'id desc'
hotel = Hotel.query.filter(condition).order_by(order_string) # 执行查询
return render_template('hotel.html',hotel=hotel,brand_list=brand_list,features_list=features_list)
if __name__ == "__main__":
app.run(debug=True) # 启动项目
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码Python 使用Flask-SQLAlchemy实现数据的多对关系 Python源码
资源推荐
资源详情
资源评论
收起资源包目录
10 使用Flask-SQLAlchemy实现数据的多对关系.zip (6个子文件)
10 使用Flask-SQLAlchemy实现数据的多对关系
templates
hotel.html 2KB
run.py 2KB
hotel.sql 1KB
static
js
main.js 1KB
css
style.css 563B
flask_demo.sql 4KB
共 6 条
- 1
资源评论
douluo998
- 粉丝: 2134
- 资源: 5357
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源码)基于Qt和AVR的FestosMechatronics系统终端.zip
- (源码)基于Java的DVD管理系统.zip
- (源码)基于Java RMI的共享白板系统.zip
- (源码)基于Spring Boot和WebSocket的毕业设计选题系统.zip
- (源码)基于C++的机器人与船舶管理系统.zip
- (源码)基于WPF和Entity Framework Core的智能货架管理系统.zip
- SAP Note 532932 FAQ Valuation logic with active material ledger
- (源码)基于Spring Boot和Redis的秒杀系统.zip
- (源码)基于C#的计算器系统.zip
- (源码)基于ESP32和ThingSpeak的牛舍环境监测系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功