python - How to access to a key of a result of .value() queryset -


i have queryset:

p = respuestapreguntaseleccionmultiple.objects.all().values('respuesta').annotate(count('respuesta')) 

the result this:

[{'respuesta__count': 2, 'respuesta': u'una vez'}] 

i need access respuesta__count or respuesta key, mean, 2 or "una vez" pass template, how can achieve this?

you need iterate on result list:

p = respuestapreguntaseleccionmultiple.objects.all().values('respuesta').annotate(count('respuesta'))  item in p:     item['respuesta__count']  # return 2     item['respuesta']  # return 'una vez' 

Comments

Popular posts from this blog

c# - Better 64-bit byte array hash -

webrtc - Which ICE candidate am I using and why? -

php - Zend Framework / Skeleton-Application / Composer install issue -