12
Django Model 객체를 변환하여 모든 필드를 그대로 유지하십시오.
Django Model 객체를 모든 필드 가있는 dict로 어떻게 변환 합니까? 모두 이상적으로로 외래 키와 필드를 포함 editable=False합니다. 자세히 설명하겠습니다. 다음과 같은 장고 모델이 있다고 가정 해 봅시다. from django.db import models class OtherModel(models.Model): pass class SomeModel(models.Model): normal_value = models.IntegerField() readonly_value = models.IntegerField(editable=False) auto_now_add = models.DateTimeField(auto_now_add=True) foreign_key = models.ForeignKey(OtherModel, related_name="ref1") many_to_many …