On 2/4/07, mykdzn <[EMAIL PROTECTED]> wrote: > > I need to return a queryset, to be serialized for ajax. I have a Store > object, which references a State object. > > State.objects.all() currently returns the state value as the ID field > for the State object. But I need it to instead return the l_state > > Any insight? > > Thanks > > Mike > > > See below: > ========= > > class Store(models.Model): > name = models.CharField(maxlength=100) > url = models.URLField(null=True,blank=True) > addr1 = models.CharField(maxlength=100,null=True,blank=True) > addr2 = models.CharField(maxlength=100,null=True,blank=True) > state = models.ForeignKey(State) > zip_code = models.CharField(maxlength=10,null=True,blank=True) > city = models.CharField(maxlength=100,null=True,blank=True) > phone = models.PhoneNumberField(null=True,blank=True) > > def __str__(self): > return "%s" % (self.name) > > > class State(models.Model): > country = models.ForeignKey(Country) > l_state = models.TextField() > s_state = models.TextField() > > def __str__(self): > return "%s" % (self.l_state) > >
[EMAIL PROTECTED]:~/src/testcases$ ./manage.py shell Python 2.4.4 (#2, Jan 13 2007, 17:50:26) [GCC 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)] on linux2 Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> from testcases.test001.models import State >>> State.objects.all() [<State: Cordoba>, <State: Numenor>, <State: Middangeard>] >>> [s for s in State.objects.all()] [<State: Cordoba>, <State: Numenor>, <State: Middangeard>] >>> [str(s) for s in State.objects.all()] ['Cordoba', 'Numenor', 'Middangeard'] Please DO NOT cross post these kind of questions to the django-developers list. Regards, PS: You need to put the State model before the Store one, or use forward notation in the FK relationship on State declaration in Stor. See the model API docs. -- Ramiro Morales --~--~---------~--~----~------------~-------~--~----~ 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?hl=en -~----------~----~----~----~------~----~------~--~---