在我看来,我有两个 django 查询。它们如下:
news = News.objects.all()[:8]
posts = Post.objects.all()[:3]
我需要按以下顺序将这两个查询组合在一起:
[news, post, news, news, news, post, news, post, news, news, news]
我很确定我将不得不使用lambda
或做某种count
,但在这一点上我有点迷茫。我应该只使用count
andappend
吗?