쿼리 세트를 직렬화하기위한 다음 코드가 있습니다.
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 객체와 사전으로 구성된 목록이기 때문입니다. 어떤 아이디어?