티스토리 뷰

반응형

 

objects.get()

 

- 검색결과에 해당하는 하나의 객체만을 반환한다. 그래서 get()의 경우 unique 한 값을 가지고 검색하는 것이 좋다. 만일 결과로 여러개의 객체가 조회되면 MultipleObjectsReturned 에러가 발생한다. 

- Returns the object matching the given lookup parameters, which should be in the format described in Field lookups.

 

objects.filter() 

 

- 검색결과에 해당하는 여러개의 객체를 포함하는 QuerySet을 반환한다. filter의 경우, 키워드 검색이라 특정 조건을 만족하는 객체를 검색할때 이용할수 있다. 

- Returns a new QuerySet containing objects that match the given lookup parameters.

 

 


참고사이트 :

https://stackoverflow.com/questions/3221938/difference-between-djangos-filter-and-get-methods/14083602#14083602

 

Difference between Django's filter() and get() methods

What is the difference between mymodel=model.objects.get(name='pol') and mymodel=model.objects.filter(name='pol')

stackoverflow.com

 

댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함