使用 tastypie 现场显示的小变化

发布于 2025-01-05 11:42:02 字数 317 浏览 0 评论 0原文

我有一个简单的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

玻璃人 2025-01-12 11:42:02

在 tastypie 中,您可以在使用 attribute< 定义资源字段时访问字段属性/a> 例如,要从某个日期算起一年,您可以

class EntryResource(ModelResource):
    year = fields.IntegerField(attribute='modified__year')
    ...

尝试这样做

attr_json = fields.CharField(attribute='attr__json')

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

class EntryResource(ModelResource):
    year = fields.IntegerField(attribute='modified__year')
    ...

so you could try

attr_json = fields.CharField(attribute='attr__json')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文