在 Django (Python) 上实现 OData JSON 接口
我们希望在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为扩展 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