私の見解では、itertools モジュールをインポートすると、次のようになります。
from itertools import chain
そして、いくつかのオブジェクトをチェーンします:
franktags = Frank.objects.order_by('date_added').reverse().filter(topic__exact='art')
amytags = Amy.objects.order_by('date_added').reverse().filter(topic__exact='art')
timtags = Tim.objects.order_by('date_added').reverse().filter(topic__exact='art')
erictags = Eric.objects.order_by('date_added').reverse().filter(topic__exact='art')
ourtags = list(chain(franktags, amytags, timtags, erictags))
「date_added」で「ourtags」を注文するにはどうすればよいですか?
驚くべきことではありませんが、
ourtags = list(chain(franktags, amytags, timtags, erictags)).order_by('date_added')
「'list' オブジェクトには属性 'order_by' がありません」というエラーが返されます。