에러

[django error] Manager isn't accessible via * instances

integerJI 2020. 3. 25. 00:37

프로젝트를 진행하며 해당 오류가 났다.

 

* AttributeError: Manager isn't accessible via Post instances

 

view단에서 모델의 id값을 가지고 삭제를 할 때 발생한 에러이다.

 

* post = Post().objects.get(id = post_id)

 

이런 식으로 가져왔는데

 

objects를 사용할 때에는 class레벨에서 사용 가능한 거라고 한다.

 

instances에선 불가능하다

 

해결방법

 

* post = get_object_or_404(Post, id=post_id)

 

get_object_or_404를 이용해 해결 완료 ^o^

 

출처 및 참고 : https://m.blog.naver.com/PostView.nhn?blogId=exam2&logNo=176866620&proxyReferer=https%3A%2F%2Fwww.google.com%2F