On Wed, 2006-10-18 at 18:35 +1000, Benjamin Ward wrote:
> 
> 
> Ok so ive already found a few of my own silly errors...
> 
> 
>         for f in MosMember._meta.fields:
>             if data.has_key(f.name):
>                 mm._meta.get_field(f.name) =
> forms.field_name(f.name).html2python(data[f.name])
>                                          ^ 
> But it still doesn't like the assignment. 'SyntaxError - can't assign
> to function call'
> 
> 
> So how do i find that Model Field name, the name of which is held in
> f.name, so that i can assign a value to it?

I think you are mixing up a couple of concepts here and making this too
difficult for yourself.

In your model, each of the fields are just simple attributes in the
class. They are *not* Field sub-classes. The Field sub-classes are
stored in _meta, as you have discovered, for when Django needs their
properties. However, in the model itself, the attributes just hold
normal Python values (strings, dates, numbers, etc).

If you know the name of the attribute, then simply

        setattr(mm, f.name, value)
        
will do what you want. You only need to rummage around inside _meta in
order to find out the candidate list of field names, then you can leave
it alone.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
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