标签: python-3.x session flask
我正在尝试使用以下代码在我的烧瓶应用程序中打印会话ID:
@application.route("/") def login(): sid=session['_id'] print(sid) return render_template("login.html")
但是,我得到一个KeyError,说_id无效。如何打印会话ID?注意:我已经设置了密钥
编辑:我的问题与this问题不同,因为: