私はpythonフラスコフレームワークを使用しています。私はパラメータが必要なデコレータを記述し、このパラメータは動的になります。python flaskデコレータに動的パラメータを渡す方法
私のデコレータは以下のように、キーを取得し、redisのキーフェッチデータを使用します。
def redis_hash_shop_style(key):
def fn_wrapper(f):
@wraps(f)
def decorated_function(*args, **kwargs):
data = redis_hash(key)
return data
return decorated_function
return fn_wrapper
と見ての通り、私はこの
class ShopAreaAndStyleListAPI(Resource):
@redis_hash_shop_style(key='shop_{}_style'.format(g.city.id))
def get(self):
# if not found from redis, query from mysql
pass
のように、このdecorater、コードを使用してクラスを持って、私のデコレータはkey
という名前のパラメータを必要とする、と私は、この
のようなキーを渡します@redis_hash_shop_style(key='shop_{}_style'.format(g.city.id))
g.city.id
都市のIDを取得します。すべてがOKの場合、このキーはこのようになります
shop_100_style
が、私はエラーだ:私はデコレータに動的パラメータを渡す方法を、フラスコ中で、かなり混乱しています
class ShopAreaAndStyleListAPI(Resource):
File "xx.py", line 659, in ShopAreaAndStyleListAPI
@redis_hash_shop_style(key='shop_{}_style'.format(g.city.id))
File "/Users/xx/.virtualenvs/yy/lib/python2.7/site-packages/werkzeug/local.py", line 347, in __getattr__
return getattr(self._get_current_object(), name)
File "/Users/xx/.virtualenvs/yy/lib/python2.7/site-packages/werkzeug/local.py", line 306, in _get_current_object
return self.__local()
File "/Users/xx/.virtualenvs/yy/lib/python2.7/site-packages/flask/globals.py", line 44, in _lookup_app_object
raise RuntimeError(_app_ctx_err_msg)
RuntimeError: Working outside of application context.
This typically means that you attempted to use functionality that
needed to interface with the current application object in a way.
To solve this set up an application context with app.app_context().
See the documentation for more information.
を?
ありがとうございました。