摘要:
1.准备视图函数search() 2.修改base.html 中搜索输入框所在的 3.完成视图函数search() 4.组合条件查询 from sqlalchemy import or_, and_ 示例: Lobby.query.filter( or_( and_( Lobby.id == Tea 阅读全文
摘要:
个人中心—视图函数带标签页面参数tag @app.route('/usercenter/<user_id>/<tag>') def usercenter(user_id, tag): if tag == ‘1': return render_template('usercenter1.html', 阅读全文