0
装飾された関数にいくつかのアクションを挿入したいのですが、その関数のコードに触れたくありません。デコレータを定義するときにアクションを挿入できますか?削除しないだけを追加する。装飾された関数内にいくつかのアクションを挿入する方法はありますか?
def real_decorator(func):
def __decorator():
print 'enter the func'
func() # <- Can I insert some action inside this from here?
print 'exit the func'
return __decorator
@real_decorator
def decorated_function():
print "I am decorated"
decorated_function()
挿入アクションではどういう意味ですか? decorated_function内の特定の行に追加コードを実行しますか? – Schore
はい、コードフレームにアクセスして、実際にデザインを再考したいと思っています。デコレータは* any *関数と共に使用することを意図しており、ランダムなコードを追加することで、明らかな損害を引き起こす可能性があります。だから問題は、なぜあなたはこれをしたいのですか? – cdarke