摘要: 蓝图结构: manage.py __init__.py account.py admin.py user.py login.html 阅读全文
posted @ 2021-06-08 15:39 wuyuan2011woaini 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 方法和函数 阅读全文
posted @ 2021-06-08 14:46 wuyuan2011woaini 阅读(27) 评论(0) 推荐(0) 编辑
摘要: from flask import Flask,session,flash,get_flashed_messages app = Flask(__name__) app.secret_key = 'asdfasdfasdf' @app.route('/x1',methods=['GET','POST 阅读全文
posted @ 2021-06-08 14:16 wuyuan2011woaini 阅读(20) 评论(0) 推荐(0) 编辑
摘要: before_request、after_requestfrom flask import Flask,render_template,redirect app = Flask(__name__) """ before_reuqest = [xxxxxxxxxx1,xxxxxxxxxx2] """ 阅读全文
posted @ 2021-06-08 13:50 wuyuan2011woaini 阅读(16) 评论(0) 推荐(0) 编辑
摘要: """ 1. 请求刚刚达到 ctx = RequestContext(...) - request - session=None ctx.push() ctx.session = SecureCookieSessionInterface.open_session 2. 视图函数 3. 请求结束 Se 阅读全文
posted @ 2021-06-08 11:47 wuyuan2011woaini 阅读(20) 评论(0) 推荐(0) 编辑