本文整理汇总了Python中django.views.generic.detail.SingleObjectMixin方法的典型用法代码示例。如果您正苦于以下问题:Python detail.SingleObjectMixin方法的具体用法?Python detail.SingleObjectMixin怎么用?Python detail.SingleObjectMixin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类django.views.generic.detail
的用法示例。
在下文中一共展示了detail.SingleObjectMixin方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: render_to_response
# 需要导入模块: from django.views.generic import detail [as 别名]
# 或者: from django.views.generic.detail import SingleObjectMixin [as 别名]
def render_to_response(self, context):
content = self._get_content()
if isinstance(content, Model):
# Note: for some reason django's serializer only eat iterables
content = [content,]
json = serializers.serialize('json', content)
if isinstance(self, SingleObjectMixin):
json = json[1:-1] # eww
return HttpResponse(json, content_type='application/json; charset=utf-8')