質問編集履歴
3
結果を修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -50,11 +50,25 @@
|
|
50
50
|
```
|
51
51
|
|
52
52
|
得たい結果
|
53
|
-
```
|
53
|
+
```
|
54
|
+
[
|
55
|
+
{
|
54
|
-
|
56
|
+
"name": "test01"
|
57
|
+
},
|
58
|
+
{
|
55
|
-
|
59
|
+
"name": "test02"
|
60
|
+
},
|
61
|
+
{
|
56
|
-
|
62
|
+
"name": "test03"
|
63
|
+
},
|
64
|
+
{
|
57
|
-
|
65
|
+
"name": "test04"
|
66
|
+
},
|
67
|
+
{
|
58
|
-
|
68
|
+
"name": "test05"
|
69
|
+
},
|
70
|
+
{
|
59
|
-
|
71
|
+
"name": "test06"
|
72
|
+
}
|
73
|
+
]
|
60
74
|
```
|
2
詳細を追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
下記のjsonのchidrenをすべて表示させたいのですが、どうすればよいでしょうか。
|
1
|
+
下記のjsonのchidrenのnameをすべて表示させたいのですが、どうすればよいでしょうか。
|
2
2
|
childrenの中にchildrenがあり、childrenの個数が可変でも対応させたいです。
|
3
3
|
```json
|
4
4
|
{
|
1
得たい結果の追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -47,4 +47,14 @@
|
|
47
47
|
}
|
48
48
|
]
|
49
49
|
}
|
50
|
+
```
|
51
|
+
|
52
|
+
得たい結果
|
53
|
+
```json
|
54
|
+
"name": "test01"
|
55
|
+
"name": "test02"
|
56
|
+
"name": "test03"
|
57
|
+
"name": "test04"
|
58
|
+
"name": "test05"
|
59
|
+
"name": "test06"
|
50
60
|
```
|