मेरे पास क्वेरी को क्रमांकित करने के लिए निम्न कोड है;
def render_to_response(self, context, **response_kwargs):
return HttpResponse(json.simplejson.dumps(list(self.get_queryset())),
mimetype="application/json")
और निम्नलिखित मेरा है get_querset()
[{'product': <Product: hederello ()>, u'_id': u'9802', u'_source': {u'code': u'23981', u'facilities': [{u'facility': {u'name': {u'fr': u'G\xe9n\xe9ral', u'en': u'General'}, u'value': {u'fr': [u'bar', u'r\xe9ception ouverte 24h/24', u'chambres non-fumeurs', u'chambres familiales',.........]}]
जिसे मुझे सिलसिलेवार करना है। लेकिन यह कहते हैं कि यह धारावाहिक करने में सक्षम नहीं है <Product: hederello ()>
। क्योंकि सूची django ऑब्जेक्ट्स और dicts दोनों से बनी है। कोई विचार ?