I defined a unicode() method in my Contact model.
def __unicode__(self):
        return u'%s %s' % (self.first_name, self.last_name)
Now I want to show the return value of the unic开发者_开发知识库ode() method in a template.
But all that i try fails.
{{ object.unicode }}
or
{{ object.unicode() }}
or
{{ object.__unicode__ }}
or
{{ object.str }}
That confuses me since I have another Model level function which can be referenced to from the template without problems.
This works fine:
def get_id(self):
        return "%i" % self.id 
{{ object.get_id|escape }}
{{ object }}
Will automatically return the value of  __unicode__ for any object.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论