On 6/16/06, Sam Tran <[EMAIL PROTECTED]> wrote:
> Wow! I didn't know it would be that simple!
>
> What about convenience functions, get_relatedobjectname()?
> Can 'relatedobjectname' be a field name passed as a parameter?

Yes, you can pass that in dynamically. For that example, you'd do this:

    def foo(model_module, method_name_part):
        return getattr(model_module, 'get_%s' % method_name_part')()

On a more fundamental basis, these two statements are equivalent:

    getattr(foo, 'bar')()
    foo.bar()

Note that this is just Python -- there's nothing Django-specific about
these examples. Isn't Python the best? :)

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to