Many to many field not shown in object while using signals to detect save operation in django
问题 This is a follow up question to : Cant get post_save to work in Django My models are : class Car(models.Model): name = models.CharField(max_length=50) ... some other attributes of Car ... class Person(models.Model): car = models.ManyToManyField(Car) name = models.CharField(max_lenght=100) ... Some other attributes of Person ... class License(models.Model): person = models.ForeignKey(Person) ... Other attributes of License ... Signal handler: def signal_handler(sender, **kwargs): print 'Person