*Here is my attempt:*

question_type = (
     (1, 'Discussion'),
     (2, 'Multiple Choice'),
     (3, 'Writing'),
     (4, 'Objective'),
     (5, 'True or False'),
     (6, 'Practice'),
)

*model.py*
class Question(models.Model):
    de_description = models.TextField(max_length=255)
    
cd_type_of_question = models.IntegerField(blank=False, verbose_name='Tipo de 
Questão', choices=question_type )

*serializers.py*
class QuestionFullSerializer(serializers.ModelSerializer):  
    
cd_type_of_question  = serializers.ListField(child=serializers.CharField())
    class Meta:
        model = Question
        fields = ('id', ' de_description', 'cd_type_of_question')


On Thursday, June 10, 2021 at 1:27:18 AM UTC-3 sutharl...@gmail.com wrote:

> can I see that model field, I don't think any extra configuration is 
> required for it
>
> On Thu, 10 Jun 2021 at 04:44, ezequia...@gmail.com <ezequia...@gmail.com> 
> wrote:
>
>> Hey guys
>>
>> Could you help me with a Django Rest Framework question?
>>
>> I have a field in my model that has possible input values, so I'm using 
>> the *choices=* attribute in my model.
>>
>> I'm having difficulty serializing the return of this data in drf.
>>
>> Could someone give me a hint on how best to implement this, please?
>>
>> Sincerely
>> Hezekiah Rock
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to django-users...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/b6cd89ca-06be-4d5d-bdd0-ba9cbb952e72n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/django-users/b6cd89ca-06be-4d5d-bdd0-ba9cbb952e72n%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/731c1759-7872-463e-af92-a89e32367c38n%40googlegroups.com.

Reply via email to