Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
g変数にアクセスできないフラスコアプリをテストしようとしたときに問題が発生しました。
g
テストする API は次のようになります。
user = query_object.get(g.user_id) # here the exception raises
テストを実行すると、次のようになります。
NameError: global name 'g' is not defined
あなたの輸入品は何ですか?試して追加する必要があります
from flask import g
または、Quart を使用している場合
from quart import g