django-piston:如何获取多对多字段的值?
我有一个模型,其中 ManyToManyField 到另一个模型。我想获取通过 JSON 返回的特定记录的所有信息(包括其他模型的相关信息)。
如何让 django-piston 显示这些值?我会很高兴只使用主键。 或者你能建议另一种选择吗?
I have a model with ManyToManyField to another model. I would like to get all the info on a particular record (including the related info from other models) return by JSON.
How to get django-piston to display those values? I would be happy with just primary keys.
Or can you suggest another option ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我可能是错的,但应该这样做:
I may be wrong, but this should do it:
您需要在返回多对多数据的处理程序上定义一个类方法,我不相信 Piston 会自动执行此操作。
You need to define a classmethod on the handler that returns the many-to-many data, I don't believe Piston does this automatically.
我的代码:
型号:
手柄:
效果很好。
My code:
Models:
Handle:
Works petty good.