I am using python flask framework. I write a decorator which will be need a parameter, and this parameter will be dynamic.
my decorator like below, will be get a key ,and using the key fetch data from 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
and I have a class to using this decorater, code like this
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
As you see, my decorator need a parameter named key
, and I pass the key like this
@redis_hash_shop_style(key='shop_{}_style'.format(g.city.id))
g.city.id
will be get the city's id, if everything is ok, the key will be like this
shop_100_style
but I got the error:
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.
I am quite confused , in flask, how to pass a dynamic parameter to a decorator?
Thanks.