Hello all, I need to send with HttpResponse an json object. I need to have there more then one objects class(myclass.objects.all()) and a dictionary. To have only objects I can do like this: ob1 = cl1.objects.all() ob2 = cl2.objects.all() all_ob = list(ob1) all_ob +=list(ob2) return HttpResponse(serializers.serialize('json', all_ob), mimetype='application/json')
So my issue is to send on the same HttpResponse one dic too. I tried like this: env = {} env['a'] = 'b' all_ob +=list(env) ...but not succed or like this: all_ob +=list(simplejson.dumps(env)) ...not succed Somebody can give me other solution, that on an ajax request(jquery) to have on callback objects class and a dictionary. Thanks. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.