Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi Iam using Django Decorators.

I want to pass a variable from decorators to views function.

Is it possible means please help me..

def d(msg='my default message', alt="none"):
    def decorator(func):
        def newfn(request, **kwargs):
            if msg and alt:
               variable = "Read Only"
            return func(request, **kwargs)
        return newfn
    return decorator

I want the variable to be passed from decorators to view.

@d('hai', 'begin')
def company(request):
   print variable
   return ...

Anyone help me. Thanks in Advance

share|improve this question

1 Answer

up vote 2 down vote accepted

You can't manipulate scopes that way.

def d(msg='my default message', alt="none"):
    def decorator(func):
        def newfn(request, **kwargs):
            if msg and alt:
               kwargs['variable'] = "Read Only"
            return func(request, **kwargs)
        return newfn
    return decorator

@d('hai', 'begin')
def company(request, variable):
   ...
share|improve this answer
Can u please tell me where will i get the value of variable in views by above kwargs['variable'] = "Read Only"? – Raji Dec 28 '12 at 6:52
Did you read the rest? – Ignacio Vazquez-Abrams Dec 28 '12 at 6:53
I got the output. Thank You so much... – Raji Dec 28 '12 at 6:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.