g对象
Posted chanyuli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了g对象相关的知识,希望对你有一定的参考价值。
g对象
g对象就是一个容器,能够多次取值
from flask import Flask,g,request
app = Flask(__name__)
@app.before_request
def be():
#request.name="cxw is big"
if request.path=="/login":
g.name="cxw is big"
def set_g():
g.name = "cxw is big"
@app.route("/")
def index():
set_g()
print("视图1",g.name)
# print("视图2", g.name)
return "ok"
@app.route("/login")
def login():
print("login视图1", g.name)
return "login"
@app.after_request
def af(response):
print("after_request", g.name)
return response
if __name__ == '__main__':
app.run()
以上是关于g对象的主要内容,如果未能解决你的问题,请参考以下文章
错误代码:错误域 = NSCocoaErrorDomain 代码 = 3840“JSON 文本没有以数组或对象和允许未设置片段的选项开头。”