0
我想插入通知列表,每種類型的通知。我有這樣的:Django插入到列表中,如果不包含它
從最初的查詢結果(我猜是與查詢集列表),命名爲notifications
:
[<Notification: Should be first>, <Notification: New link>]
與限制,我已經是:
for(note in notification):
if len(note.region.all()) == 0 and (note.notificationType.priority not in notifications):
notifications.append(note)
我問題是,如何獲取通知列表中的屬性notificationType.priority以查看是否該數字不在notifications
列表中。
是'notification'是'notification = Notification.objects.filter(** condition)。 order_by('notificationType_priority','-start_date')' –