2017-07-09 8 views
2

私は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. 

を?

ありがとうございました。

答えて

1

我々はflask application globalflask.gのためのドキュメントを確認した場合、それは言う:

To share data that is valid for one request only from one function to another, a global variable is not good enough because it would break in threaded environments. Flask provides you with a special object that ensures it is only valid for the active request and that will return different values for each request.

これは(flask/globals.pyに)スレッドローカルプロキシを使用することによって達成される:

g = LocalProxy(partial(_lookup_app_object, 'g')) 

他の事を我々念頭に置いておいてください。Pythonは、リクエストの外にある "コンパイル"フェーズ、またはflaskアプリケーションの間にデコレータの最初のパスを実行しています。つまり、アプリケーションが起動するとき(クラスが解析/装飾されているとき)、flaskの要求コンテキストの外にkey引数に'shop_{}_style'.format(g.city.id)という値が割り当てられます。

flask.gへのアクセスを遅延させるには、コールバック機能を使用する場合にのみ値を取得する遅延プロキシを使用します。 、我々はProxyTypesパッケージから同様のLazyProxyを使用することができ、一般的に

from werkzeug.local import LocalProxy 

class ShopAreaAndStyleListAPI(Resource): 
    @redis_hash_shop_style(key=LocalProxy(lambda: 'shop_{}_style'.format(g.city.id))) 
    def get(self): 
     # if not found from redis, query from mysql 
     pass 

(非flaskまたは非werkzeugアプリケーション用):のは、すでにflaskにバンドル1、werkzeug.local.LocalProxyを使用してみましょう。これとは無関係の

は、あなたも値がないだけredisからフェッチすることが、また、更新(または作成)するためにあなたのredis_hash_shop_styleデコレータを修正したいと思うならば、古いラップf()ときを呼び出すことによって、(または非存在)適切な。

関連する問題