Can I get the value of an object field some other way than "obj.field". Does something like "obj.get('field')" exist? Same thing for setting the value of the field.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
why do you want this? You could use
i guess... though it's not a method call
will give you a list of all the fields that where changed. (though I'm not 100% sure) |
||||
|
|
To get the value of a field:
To set the value of a field:
To get all the fields and values for a Django object:
|
|||
|
If somebody stumbles upon this little question, the answer is right here: How to introspect django model fields? |
|||
|
|
|
To get related fields:
E.g.,
Dunno, perhaps there's a better way to do it but that worked for me. |
|||
|
|