django-piston:如何将实体字段添加到manyToMany相关实体字段?

发布于 2024-11-14 12:26:34 字数 934 浏览 2 评论 0原文

我有两个实体:Post 和 Tag,具有名为“tagged”的多对多关系。

为了解析特定客户端上返回的 json,我需要做的是通过添加字段“postID”(当前 Post 的 pk 字段)来输出字段) 到与该帖子相关的标签。

所以,我现在的输出是:

{
    "post": {
        "name": "Dummy name", 
        "pk": 1,
        "tags": [
            {
                "id": 2, 
                "name": "Patio"
            }, 
            {
                "id": 3, 
                "name": "Roof"
            }
        ], 
        "ref": "709230056"
    }
}, 

但应该是:

{
    "post": {
        "name": "Dummy name",
        "pk": 1,
        "tags": [
            {
                "id": 2, 
                "name": "Patio",
                "postID": 1,


            }, 
            {
                "id": 3, 
                "name": "Roof"
                "postID": 1,
            }
        ], 
        "ref": "709230056"
    }
}, 

我已经尝试使用我的处理程序的字段,但没有成功:(

如何做到这一点? 谢谢

I have two Entities: Post and Tag, with a ManyToMany relation called 'tagged'

What I need to do, in order to parse json returned on particular client, is output fields by adding a field 'postID' (the pk field of current Post) to Tag related to that post.

So, my output now is:

{
    "post": {
        "name": "Dummy name", 
        "pk": 1,
        "tags": [
            {
                "id": 2, 
                "name": "Patio"
            }, 
            {
                "id": 3, 
                "name": "Roof"
            }
        ], 
        "ref": "709230056"
    }
}, 

but it should be:

{
    "post": {
        "name": "Dummy name",
        "pk": 1,
        "tags": [
            {
                "id": 2, 
                "name": "Patio",
                "postID": 1,


            }, 
            {
                "id": 3, 
                "name": "Roof"
                "postID": 1,
            }
        ], 
        "ref": "709230056"
    }
}, 

I've alrady tried to play with fields of my Handler but with no success :(

How to do that ?
Thanks

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文