如何将django模型方法添加到序列化?

时间:2015-11-07 02:57:27

标签: json django serialization django-models

models.py

HashMap

views.py

class City(models.Model):
    name = models.CharField(max_length=50, null=True)
    state = models.CharField(max_length=2, null=True)

    def fooFunc(self):
        return 'foo'
    foo = property(fooFunc)

我的views.py中发生的事情只返回'名称'并且'州' json响应中的字段。如何让它包含def getCities(request): json = serialize('geojson', City.objects.all(), fields=('name', 'state', 'foo')) response = HttpResponse(json) return response 或方法foo的响应?

0 个答案:

没有答案