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

前端 未结 12 1313
野的像风
野的像风 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:28

    To get values of a models into dictionary, add below code at the place where u need that dictionary

    from models import DictModel
    
    activity_map = dict(Plan.objects.values_list('key', 'value'))
    

    activity_map is a dictionary which contains required information .

提交回复
热议问题