django 为什么序列化捕获不会注解字段?

3hvapo4f  于 2022-11-26  发布在  Go
关注(0)|答案(1)|浏览(112)

我不知道向查询集中添加数据会这么难。这就像,如果它不是直接来自数据库,那么它就可能不存在。即使当我注解时,新字段也是二等公民,并不总是可用的。
为什么序列化不会捕获我的注解字段?
型号

class Parc(models.Model):
    # Regular Django fields corresponding to the attributes in the
    # world borders shapefile.
    prop_id = models.IntegerField(unique=True)  # OBJECTID: Integer (10.0)
    shp_id = models.IntegerField()

    # GeoDjango-specific: a geometry field (MultiPolygonField)
    mpoly = models.MultiPolygonField(srid=2277)
    sale_price = models.DecimalField(max_digits=8, decimal_places=2, null=True)
    floorplan_area = models.DecimalField(max_digits=8, decimal_places=2, null=True)
    price_per_area = models.DecimalField(max_digits=8, decimal_places=2, null=True)
    nbhd = models.CharField(max_length=200, null=True)
    # Returns the string representation of the model.
    def __str__(self):              # __unicode__ on Python 2
        return str(self.shp_id)

查询:

parcels = Parc.objects\
    .filter(prop_id__in=attrList)\
    .order_by('prop_id') \
    .annotate(avg_price=Avg('sale_price'),
              perc_90_price=RawAnnotation('percentile_disc(%s) WITHIN GROUP (ORDER BY sale_price)', (0.9,)),
              )
geojson = serialize('geojson', parcels)

当我打印geojson时,它没有avg_price或perc_90_price的键/值。在这一点上,我倾向于创建一个虚拟字段,然后在检索查询集后用我的客户计算填充它,但我愿意接受各种想法。
Helper class

class RawAnnotation(RawSQL):
"""
RawSQL also aggregates the SQL to the `group by` clause which defeats the purpose of adding it to an Annotation.
"""
def get_group_by_cols(self):
    return []
zwghvu4y

zwghvu4y1#

我在DjangoRest Framework和该库中的序列化器中使用注解。
特别是,序列化程序方法允许您访问查询集。

class SomeSerializer(serializers.ModelSerializer):
  avg_price = serializers.SerializerMethodField()

  def get_avg_price(self, obj):
    try:
        return obj.avg_price
    except:
        return None

正如Carl Kroeger Ihl所述,您还可以用途:

class SomeSerializer(serializers.ModelSerializer): 
   avg_price = serializers.IntegerField(allow_null=True)

http://www.django-rest-framework.org/api-guide/fields/#serializermethodfield

相关问题