在 Django (Python) 上实现 OData JSON 接口

发布于 2024-10-01 06:47:23 字数 369 浏览 4 评论 0原文

我们希望在 Django (Python 2.5.x) 上有一个 OData JSON 接口。 4)网站。在撰写本文时,似乎没有可用的库

我正在考虑编写“一些”逻辑来自己处理这个问题。

  • 扩展 Django JSON 序列化器是个好主意吗?
  • 在哪里以及如何存储与模型相关的 URI?

We would like to have a OData JSON interface on our Django (Python 2.5.4) website. At the moment of writing there seems to be no library available.

I'm thinking of writing "some" logic to handle this ourselves.

  • Would it be a good idea to extend the Django JSON serializer?
  • Where and how to store the URI's related to the models?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

写下不归期 2024-10-08 06:47:23

我认为扩展 Django JSON 序列化器是个好主意,但请查看 django -piston 这可能是更好的选择。

URI 必须在您的应用程序的 urls.py 中定义,然后在您的模型中您可以定义一个函数

get_odata_uri()

,它的工作方式类似于 Django 的 get_absolute_url()。不要将其硬编码到模型中,而是确保使用 django.core.urlresolvers 中的反向函数

I think it would be a good idea to extend the Django JSON serializer, but have a look at django-piston this might be the better route to go.

The URI's will have to be defined in your urls.py for your app, and then in your models you could define a function

get_odata_uri()

Which would work like the Django's get_absolute_url(). Instead of hardcoding it into your model, make sure you make use of the reverse function from django.core.urlresolvers

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