次のjsonドキュメントがあります。
{
"Section": {
"Name": "Section 1",
"Description": "Section 1 information",
"Icon": "test.png"
},
"Data": [{
"Name": "Firstname",
"Desc": "Users first name",
"Type": "Text"
}, {
"Name": "Lastname",
"Desc": "Users last name",
"Type": "Text"
}]
} {
"Section": {
"Name": "Section 2",
"Description": "Section 2 information",
"Icon": "test.png"
},
"Data": [{
"Name": "Section 2 Item",
"Desc": "Section 2 Desc",
"Type": "Text"
}]
}
Data.Name に基づいてアイテムを射影する方法があるかどうかを尋ねたかったのです。Section オブジェクトを含む ['Firstname', 'Section 2 Item'] の Data.Name を持つすべてのプロジェクトと同様です。したがって、結果は次のようになります。
{
"Section": {
"Name": "Section 1",
"Description": "Section 1 information",
"Icon": "test.png"
},
"Data": [{
"Name": "Firstname",
"Desc": "Users first name",
"Type": "Text"
}]
} {
"Section": {
"Name": "Section 2",
"Description": "Section 2 information",
"Icon": "test.png"
},
"Data": [{
"Name": "Section 2 Item",
"Desc": "Section 2 Desc",
"Type": "Text"
}]
}
これが可能かどうかはわかりません。
前もって感謝します。