如何从django国家序列化一个CountryField?

ntjbwcob  于 2023-03-20  发布在  Go
关注(0)|答案(1)|浏览(110)

我尝试将CountryField添加到Register进程的序列化器中(使用dj-rest-auth),但找不到正确的实现方法。
我找到的所有答案只是说使用文档中所说的,但这对我没有帮助,也许我只是做得不对。
这是django国家的文件所说的:

from django_countries.serializers import CountryFieldMixin

class CountrySerializer(CountryFieldMixin, serializers.ModelSerializer):

class Meta:
    model = models.Person
    fields = ('name', 'email', 'country')

我需要在此处添加字段:

class CustomRegisterSerializer(RegisterSerializer, CountryFieldMixin):

    birth_date = serializers.DateField()
    country = CountryField()
    gender = serializers.ChoiceField(choices=GENDER)

    # class Meta:
    #     model = User
    #     fields = ('country')

    # Define transaction.atomic to rollback the save operation in case of error
    @transaction.atomic
    def save(self, request):
        user = super().save(request)
        user.birth_date = self.data.get('birth_date')
        user.country = self.data.get('country')
        user.gender = self.data.get('gender')
        user.save()
        return user

用户模型

class User(AbstractUser):
    """
    Default custom user model
    """

    name = models.CharField(max_length=30)

    birth_date = models.DateField(null=True, blank=True)
    country = CountryField(null=True, blank=True, blank_label='Select country')
    gender = models.CharField(choices=GENDER, max_length=6, null=True, blank=True)
    ...

除此之外,我尝试了不同的方法,但都不起作用。

ktecyv1j

ktecyv1j1#

对于串行化器,您导入django_countries.**serializer_fields**模块的CountryField,因此:

from django_countries.serializer_fields import CountryField

class CustomRegisterSerializer(RegisterSerializer):
    # …
    country = CountryField()
    # …

如果您想使用Mixin(它将使用这样的CountryField序列化器字段),您应该在RegisterSerializer之前指定CountryFieldMixin,否则它将不会覆盖.build_standard_field(…)方法。
因此,您继承:

class CustomRegisterSerializer(CountryFieldMixin, RegisterSerializer):
    # …

在这种情况下,您不应该手动指定country序列化器字段,因为这将使mixin无效。

相关问题