Session

Posted wuyuan2011woaini

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Session相关的知识,希望对你有一定的参考价值。

"""
1. 请求刚刚达到
    ctx = RequestContext(...)
          - request
          - session=None
    ctx.push()
        ctx.session = SecureCookieSessionInterface.open_session

2. 视图函数

3. 请求结束
    SecureCookieSessionInterface.save_session()
"""
from flask import Flask,session
app = Flask(__name__)
app.secret_key = \'sadfasdfasdf\'

@app.route(\'/x1\')
def index():
    # 去ctx中获取session
    session[\'k1\'] = 123
    session[\'k2\'] = 123
    del session[\'k2\']
    return "Index"


@app.route(\'/x2\')
def order():
    print(session[\'k1\'])
    return "Order"

if __name__ == \'__main__\':
    app.run()

    # 1. 请求一旦到来显
    app.__call__
    app.wsgi_app
    app.open_session

以上是关于Session的主要内容,如果未能解决你的问题,请参考以下文章

一个队asp.net session进行了再次封装的C#类的代码

redis存储session配制方法

少部分手机浏览器对于COOKIE支持不够导致服务端无法读取session的解决方案

sqlserver-处理死锁

暑假自学JAVA Web心得

hibernate在使用getCurrentSession时提示no session found for current thread