I know that with a regular string you can do x.len() to get the length of it, but a Django model TextField doesn't seem to want that. I have found and looked at the model field reference. How do I get the length of a text field in Django? Help and examples appreciated.
migrated from programmers.stackexchange.com Aug 13 '12 at 15:33
|
Try
Also, there is no 'string'.len() method in python unless you have added it somehow. |
|||
|
|
|
Django model instances don't actually expose the fields as field classes: once loaded from the database, they are simply instances of the relevant data types. Both CharField and TextField are therefore accessed as simple strings. This means that, as with any other Python string, you can call |
|||
|
|
lenmethod in python, you call thelenbuiltin (which objects can provide by implementing__len__) – Daenyth Aug 13 '12 at 15:15