I'm trying to use the ValuesQuerySet feature in Django to limit the number of fields returned from query to only those I need. I would like to serialize this data set a JSON object However, Django keeps throwing an error. Below I've included my code and the error I receive:
objectList = ConventionCard.objects.values('fileName','id').filter(ownerUser = user)
data = serializers.serialize('json', objectList)
return HttpResponse(data, mimetype='application/javascript')
The Error:
Exception Type: AttributeError
Exception Value: 'dict' object has no attribute '_meta'
Exception Location: C:\Python27\lib\site-packages\django\core\serializers\base.py in serialize, line 41
Thanks !
values()? That makesdictobjects which can't easily be serialized. – S.Lott Jul 6 '11 at 18:27valuesdoesn't work, saying that it "seems to be the way to do this" can't be true. If you want just two fields, please update the question say that very, very clearly. It's not clear in the question. – S.Lott Jul 6 '11 at 18:34