error referenciando un id en Django
AUTOR PREGUNTA #1
QuerySet object has no attribute address
eso es del siguiente codigo:
bdns = Negocio.objects.filter(name='slow')
addx = bdns.address
addr = Direcc.objects.get(id=addx)
Que puedo hacer? Les dejo a continuacion el modelo para Negocio:
class Negocio(models.Model): telef= PhoneNumberField() address = models.ForeignKey(Direcc) nombre= models.CharField(max_length=64)
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
bdns = Negocio.objects.filter(name='slow') b = dbns[0] the_address = b.address try: bdns = Negocio.objects.get(name='slow') except Negocio.DoesNotExist: bdns = None except Negocio.MultipleObjectsReturned: bdns = None if bdns is not None: the_address = bdns.address print the_address.id print the_address.street print the_address.city