使用 tastypie 现场显示的小变化
我有一个简单的 tastypie 资源:
class EntryResource(ModelResource):
class Meta:
queryset = POI.objects.all()
resource_name = 'poi'
该资源包含一个字段geom
,它是一个几何字段。 Tastypie 将其输出为 WKT(字符串)。我想将其输出为 geoJSON。
有没有一种简单的方法可以使 EntryResource 输出 attr.json 而不是 attr?
I have a simple tastypie resource:
class EntryResource(ModelResource):
class Meta:
queryset = POI.objects.all()
resource_name = 'poi'
This resource contains a field geom
, which is a geometryfield. Tastypie outputs it as WKT (string). I would like to output it as geoJSON.
Is there a simple way to make EntryResource output attr.json instead of attr?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 tastypie 中,您可以在使用 attribute< 定义资源字段时访问字段属性/a> 例如,要从某个日期算起一年,您可以
尝试这样做
In tastypie you can access field attributes when defining a resource field with attribute e.g. to get a year from a date you can do
so you could try