0

在 JSON 有效负载中,如何从一个地方引用另一个地方的数据?

用例:想象一下定义良好的可序列化实体 A (a1, a2, a3) 和 B (b1, b2, b3)。现在考虑一个期望以下内容的 HTTP 请求负载:

   {
     data : {
              "entityOne"   : Entity Representation of entity A,
              "entityTwo"   : Entity Representation of entity B
     },
     relationships : {
             "parenthood" : // Here I need to refer entityOne & entityTwo
                            // to express the notion of one being child of other
     }
   }

请让我知道您对实现此引用的想法。

我考虑过的方法:

强制客户端针对有效负载中的每个实体发送临时参考 ID,并在关系中使用它们,如下所示

   {
     data : {
              "entityOne"   : { "id" : "temp1" -- other data for type A }
              "entityTwo"   : { "id" : "temp2" -- other data for type B }
     },
     relationships : {
             "parenthood" :  {
                                "parent" : "temp1",
                                "child"  : "temp2"
              }
     }
   }
4

1 回答 1

0

您可以使用 JSON 参考https://datatracker.ietf.org/doc/html/draft-pbryan-zyp-json-ref-03

{
    "data" : {
        "entityOne": { ... }
        "entityTwo": { ... }
    },
    "relationships" : {
        "parenthood" :  {
            "parent" : { "$ref": "#/data/entityOne" },
            "child"  : { "$ref": "#/data/entityTwo" }
        }
    }
}
于 2016-02-13T07:28:05.877 回答