유튜브블로그Top 10
내 프로필

데브허브 안내
소개업데이트 소식

데브허브 커뮤니티

Creating Nested Objects | Overriding serializer create() method in Django REST Framework

BugBytes

2024. 12. 27.

0

#backend
  • Django REST Framework에서 쓸 수 있는 Writable Nested Representations를 만드려면 serializers의 create() 혹은 update() 메서드를 오버라이딩해야 합니다. 📝
  • 순서를 만들고 저장하려면 order아이템과 같은 관계있는 데이터도 함께 처리해야 합니다. 🔄
  • post 요청에서 order item을 생성하는 방법을 serializers의 create() 메서드에서 정의해야 합니다. 🎯

Recommanded Videos