Django Memo

20240323

描述

1
2
Entry.objects.filter(id__in=[1, 3, 4])
Entry.objects.filter(headline__in="abc")

今天是關於Model.filter的Tips
假設你有 一個 group id的list
那你想要取出所有id在list裡面的的group 可以透過filter(id__in=[1, 3, 4])
還有很多其他的

built-in lookups Description
exact Exact match
iexact Case-insensitive exact match
contains Case-sensitive containment test
icontains Case-sensitive containment test
in In a given iterable
....

我只能說 這邊只能算我沒有認真翻文件 幫我自己留個紀錄

REF:
https://docs.djangoproject.com/en/5.0/ref/models/querysets/#field-lookups

有問題可以在下方utterances留言喔

updatedupdated2024-08-192024-08-19
載入評論