为什么不能序列化捕获注释字段?

时间:2017-09-08 17:47:16

标签: django geojson annotate

我不知道向查询集添加数据会如此困难。它就像是,如果它没有直接来自数据库那么它也可能不存在。即使我注释,新领域也是二等公民,并且不会随时可用。

为什么不能序列化捕获我的注释字段?

  

模型

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 []

1 个答案:

答案 0 :(得分:0)

我在Django Rest Framework和该库中的序列化程序中使用了注释。

特别是,序列化方法允许您访问查询集。你可以做这样的事情。

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

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

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