问题如下:在下面的代码中,我有一个PreguntaSerializer
。因为我现在编码如果我发布这样的JSON:
{
"categoria_pregunta": 1,
"titulo": "Pregunta de Prueba",
"descripcion": "Esta es la pregunta que mando por Postman",
"persons": [1, 3, 5, 3050]
}
一切正常,但是当我检索数据时,我得到categoria_pregunta
和persons
的方式与发布它们的方式相同(分别为int和数组)。我希望能够使用Categoria_preguntaSerializer
和PersonForPreguntaSerializer
来获取这些字段,但如果我在categoria_pregunta
中为其各自的序列化程序更改persons
和PreguntaSerializer
,我发布前面提到的JSON时会出错。
有没有办法可以对这两个操作使用相同的PreguntaSerializer
,还是应该为GET
和POST
分隔我的观点并使用不同的序列化工具?
models.py
class Categoria_pregunta(models.Model):
nombre = models.CharField(
'Descripcion', null=True, blank=True, max_length=150, default='')
status = models.IntegerField(
'Estado', null=True, blank=True, choices=STATUS_CHOICES)
class Pregunta(models.Model):
titulo = models.CharField(max_length=200, null=False, blank=False, default='')
descripcion = models.TextField(null=False, blank=False)
categoria_pregunta = models.ForeignKey(
Categoria_pregunta, null=True, blank=False, max_length=20)
usuario = models.ForeignKey(User, null=True, blank=False, max_length=20)
persons = models.ManyToManyField(Person, blank=False, max_length=20)
class Person(models.Model):
name = models.CharField('Nombre', null=True,
blank=False, max_length=1000, default='')
lastname = models.CharField(
'Apellido', null=True, blank=False, max_length=1000, default='')
...
serializers.py
class Categoria_preguntaSerializer(serializers.ModelSerializer):
class Meta:
model = Categoria_pregunta
fields = ('id', 'nombre',)
class PersonForPreguntaSerializer(serializers.ModelSerializer):
class Meta:
model = Person
fields = ('id', 'name', 'lastname')
class PreguntaSerializer(serializers.ModelSerializer):
usuario = UserSerializer(read_only=True)
categoria_pregunta = serializers.PrimaryKeyRelatedField(queryset=Categoria_pregunta.objects.all())
persons = serializers.PrimaryKeyRelatedField(many=True, queryset=Person.objects.all())
class Meta:
model = Pregunta
exclude = ('status', )
views.py
class ListaPregunta(ListCreateAPIView):
queryset = Pregunta.objects.all().order_by('-id')
serializer_class = PreguntaSerializer
答案 0 :(得分:1)
我建议有两个不同的字段用于读写目的。您可以在序列化程序persons_data
中添加一个新字段,该字段可用于获取序列化格式的人员列表数据。
示例代码:
class PreguntaSerializer(serializers.ModelSerializer):
usuario = UserSerializer(read_only=True)
categoria_pregunta = serializers.PrimaryKeyRelatedField(queryset=Categoria_pregunta.objects.all())
persons_data = PersonForPreguntaSerializer(source='persons', many=True, read_only=True)
class Meta:
model = Pregunta
exclude = ('status', )
由于您在exclude
类中使用Meta
,persons
字段已经包含在读取和写入中,这将接受您在请求中传递的主键ID列表JSON。
您还可以查看序列化程序的.to_representation()
和.to_internal_value()
方法。
来自文档
.to_representation()
- 重写此操作以支持序列化,以进行读取操作。.to_internal_value()
- 覆盖它以支持反序列化,用于写操作。
答案 1 :(得分:1)
您应该覆盖to_representation()
方法。试试这个,
from rest_framework.serializers import Serializer
class PreguntaSerializer(serializers.ModelSerializer):
usuario = UserSerializer(read_only=True)
categoria_pregunta = serializers.PrimaryKeyRelatedField(queryset=Categoria_pregunta.objects.all())
persons = serializers.PrimaryKeyRelatedField(many=True, queryset=Person.objects.all())
class Meta:
model = Pregunta
fields = '__all__'
def to_representation(self, instance):
if self.context['request'].method == 'POST':
user = UserSerializer(instance.usuario).data
categoria_pregunta = Categoria_preguntaSerializer(instance.categoria_pregunta).data
persons = PersonForPreguntaSerializer(instance.persons, many=True).data
data = {"id": instance.id,
"usuario": user,
"categoria_pregunta": categoria_pregunta,
"persons": persons,
"titulo": instance.titulo,
"descripcion": instance.descripcion
}
return data
return Serializer.to_representation(self, instance)