我有以下两个查询集:
opus = Work_Music.objects.filter(composerwork__person=self.kwargs['pk'], level=0).order_by('date_completed')
event = LifeEvent.objects.filter(person=self.kwargs['pk']).order_by('date_end')
第一个完成作曲家的工作,第二个完成他的人生大事。
我想创建一个嵌套的字典:第一级是按年份键入的。第二级有两个关键“工作”和“生活”。它应该是一个值列表,因为在给定的一年中可能会有多个工作和事件。
我写了以下内容:
# timeline = defaultdict(list)
timeline = dict()
for o in opus:
if o.date_comp_f not in timeline:
timeline[o.date_comp_f] = {}
timeline[o.date_comp_f]['work'] = {}
timeline[o.date_comp_f]['work'].append(o)
else:
timeline[o.date_comp_f]['work'].append(o)
for e in event:
if e.date_end_y not in timeline:
timeline[e.date_end_y] = {}
timeline[e.date_end_y]['life'] = {}
timeline[e.date_end_y]['life'].append(e)
else:
timeline[e.date_end_y]['life'].append(e)
timeline = dict(timeline)
我还想按时间顺序对第一级键进行排序。我该怎么做呢?我不断收到关键错误。
答案 0 :(得分:0)
您想使用列表时使用{}
吗?我猜这是一个错字,但是这里是解决方法(有一些简化):
# timeline = defaultdict(list)
timeline = dict()
for o in opus:
if o.date_comp_f not in timeline:
timeline[o.date_comp_f] = {}
timeline[o.date_comp_f]['work'] = []
timeline[o.date_comp_f]['work'].append(o)
for e in event:
if e.date_end_y not in timeline:
timeline[e.date_end_y] = {}
timeline[e.date_end_y]['life'] = []
timeline[e.date_end_y]['life'].append(e)
timeline = dict(timeline)
如果这行不通(我认为这不行),您能否提供Work_Music
和LifeEvents
模型?