外部キーを使用していくつかの JSON をリンクする必要があります。たとえば、次の 3 つの JSON があります。
JSON 1 - ユーザー
{
id: 23,
name: "Agata"
}
JSON 2 - スライド
{
title: "lalala",
content: "lalalalalal",
member: [
{
//here I would like to add json user id: 23
}
]
}
JSON 3 - コメント
{
title: "nanana",
author: // here I would like to add json user id : 23
}
あなたはなにか考えはありますか?