django simplejson投掷键必须是字符串错误

时间:2011-08-02 18:34:30

标签: python django

错误听起来很直接,但我无法修复它。我试着改变我的字典,但我不去任何地方,我想也许有人在这里可以帮助我指出我需要做什么来解决它。以下是我的代码

blog_calendar = BlogI18n.objects.filter(language=request.LANGUAGE_CODE,
                                        blog__published_at__gte=datetime(year, month, 1),
                                        blog__published_at__lte=datetime(year, month, calendar.monthrange(year, month)[1])
                                        ).order_by('-blog__published_at').select_related()

try:
    calendar_response = {}
    calendar_response['properties'] = []
    calendar_response['properties'].append({'next_url' : reverse('blog-archives-month-year',
                                                                 args=[(date(year, month, 1)-timedelta(days=31)).year, (date(year, month, 1)-timedelta(days=31)).month])}
    )
    calendar_response['properties'].append({'prev_url' : reverse('blog-archives-month-year',
                                                                 args=[(date(year, month, 1)+timedelta(days=31)).year, (date(year, month, 1)+timedelta(days=31)).month])}
    )
    calendar_response['current_month'] = []
    calendar_response['current_month'].append({'month':'%s, %s' % (calendar.month_name[month], year)})
    calendar_response['events'] = []
    if blog_calendar:
        calendar_response['events'].append(dict((i.blog.published_at.date(), (i.blog.slug, i.title)) for i in blog_calendar))
    else:
        calendar_response['events'].append(None)
except Exception, e:
    print e.__str__()


if  request.is_ajax():
    # try converting the dictionary to json
    try:
        from django.core.serializers.json import DjangoJSONEncoder
        return HttpResponse(simplejson.dumps(calendar_response, cls=DjangoJSONEncoder), 
                            mimetype="application/json")
    except Exception, e:
        return HttpResponse(e.__str__())

当我将以下行注释掉时,将其返回的TypeError转换为无法转换为json(键必须是字符串)

    calendar_response['events'].append(dict((i.blog.published_at.date(), (i.blog.slug, i.title)) for i in blog_calendar))

它有效,所以问题在于此,任何想法如何以simplejson理解它的方式重建我的字典?

的问候,

2 个答案:

答案 0 :(得分:3)

您必须将所有密钥转换为字符串。

在这一行:

calendar_response['events'].append(dict((i.blog.published_at.date(), (i.blog.slug, i.title)) for i in blog_calendar))

罪魁祸首是i.blog.published_at.date()表达。用一些返回字符串的东西替换它,例如:

str(i.blog.published_at.date())

或:

i.blog.published_at.date().isoformat()

答案 1 :(得分:1)

或者,如果您想要特定格式的日期,可以使用strftime,例如:

i.blog.published_at.date().strftime('%Y-%m-%d')

分别导致年,月,日的结果。