Câu hỏi được gắn thẻ «django-class-based-views»


6
<Đối tượng Django> không thể tuần tự hóa JSON
Tôi có mã sau để tuần tự hóa bộ truy vấn; def render_to_response(self, context, **response_kwargs): return HttpResponse(json.simplejson.dumps(list(self.get_queryset())), mimetype="application/json") Và sau đây là của tôi get_querset() [{'product': &lt;Product: hederello ()&gt;, 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 …

5
Tham số URL và logic trong các chế độ xem dựa trên lớp Django (TemplateView)
Tôi không rõ cách tốt nhất để truy cập tham số URL trong chế độ xem dựa trên lớp trong Django 1.5. Hãy xem xét những điều sau: Lượt xem: from django.views.generic.base import TemplateView class Yearly(TemplateView): template_name = "calendars/yearly.html" current_year = datetime.datetime.now().year current_month = datetime.datetime.now().month def get_context_data(self, **kwargs): context = …

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.