姜戈Rest_framework "Got AttributeError when attempting to get a value for field Process"



我在浏览我的rest_framework api 页面时遇到了无法解决的错误。

完整的错误(Django 错误(是:

 Got AttributeError when attempting to get a value for field `process` on   
 serializer `ResultSerializer`.
 The serializer field might be named incorrectly and not match any attribute     
 or key on the `Shop` instance.
 Original exception text was: 'Shop' object has no attribute 'process'.

似乎序列化程序试图在另一个名为 ResultSerializer 的序列化程序中给定的字段中获取值,但找不到它。我已经检查了所有字段是否正确。

这是我的 models.py

from django.db import models
class ResultSet(models.Model):
    process = models.CharField(max_length=10)
    subprocess = models.CharField(max_length=10)
class Shop(models.Model):
    Establishment = models.CharField(max_length=100)
    Address = models.CharField(max_length=100)
    Suburb = models.CharField(max_length=50)
    Postcode = models.CharField(max_length=10)
    State = models.CharField(max_length=5)
    Establishment_Type = models.CharField(max_length=20)
    latitude = models.DecimalField(decimal_places=6, max_digits=12)
    longtitude = models.DecimalField(decimal_places=6, max_digits=12)
    class Meta:
        ordering = ('Establishment',)
class EntirelyResult(models.Model):
    Result = models.ManyToManyField(Shop, related_name='fullresult')
    Status = models.ManyToManyField(ResultSet, related_name='status')

这是我的 serializers.py

from rest_framework.serializers import ModelSerializer
from .models import Shop, ResultSet, EntirelyResult
class ResultSerializer(ModelSerializer):
    class Meta:
        model = ResultSet
        fields = ('process', 'subprocess')
class ShopSerializer(ModelSerializer):
   class Meta:
       model = Shop
       fields = ('__all__')
class ShopDetailSerializer(ModelSerializer):
    Result = ResultSerializer(many=True, read_only=True)
    Status = ShopSerializer(many=True, read_only=True)
    class Meta:
        model = EntirelyResult
        fields = ('Result', 'Status')

这是我的 views.py

from rest_framework.generics import ListAPIView
from .models import EntirelyResult
from .serializers import ShopDetailSerializer
class ShopDetailAPIView(ListAPIView):
    queryset = EntirelyResult.objects.all()
    serializer_class = ShopDetailSerializer

我错过了什么来正确制作rest_framework吗?

你的序列化程序中有一个错别字ShopDetailSerializer应该是:

class ShopDetailSerializer(ModelSerializer):
    Result = ShopSerializer(many=True, read_only=True)
    Status = ResultSerializer(many=True, read_only=True)

编辑:Whole Result Result字段映射到Shop,将Status字段映射到ResultSet,而序列化程序最初将Result字段映射到ResultSetStatus字段映射到Shop

相关内容

  • 没有找到相关文章

最新更新