引用 JSON 中的数据
Referencing data in JSON
在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"
}
}
}
你可以使用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" }
}
}
}
在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"
}
}
}
你可以使用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" }
}
}
}