Django: Converting an entire set of a Model's objects into a single dictionary

前端 未结 12 1315
野的像风
野的像风 2020-11-30 16:45

If you came here from Google looking for model to dict, skip my question, and just jump down to the first answer. My question will only confuse you.

Is ther

12条回答
  •  野性不改
    2020-11-30 17:34

    You can also rely on django code already written ;).

    from django.forms.models import model_to_dict
    model_to_dict(instance, fields=[], exclude=[])
    

提交回复
热议问题