リファクタリングがより良い解決策になる可能性がありますが、別の解決策を次に示します。
カスタム マネージャーを作成します。
class PostManager(models.Manager):
def mixed(self, first):
all_dates = []
articles_dates = Articles.objects.extra(select={'type':'"article"'}).values('id', 'post_date', 'type').order_by('-post_date')[:first]
links_dates = Links.objects.extra(select={'type':'"link"'}).values('id', 'post_date', 'type').order_by('-post_date')[:first]
all_dates.extend(articles_dates)
all_dates.extend(links_dates)
# Sort the mixed list by post_date, reversed
all_dates.sort(key=lambda item: item['post_date'], reverse=True)
# Cut first 'first' items in mixed list
all_dates = all_dates[:first]
mixed_objects = []
mixed_objects.extend(Articles.objects.filter(id__in=[item['id'] for item in all_dates if item['type'] = 'article']))
mixed_objects.extend(Links.objects.filter(id__in=[item['id'] for item in all_dates if item['type'] = 'link']))
# Sort again the result list
mixed_objects.sort(key=lambda post: post.post_date, reverse=True)
return mixed_objects
抽象モデルで使用します。
class Post(models.Model):
class Meta:
abstract = True
objects = PostManager()
次に、混合オブジェクトの呼び出しは次のようになります。
Article.objects.mixed(10)