The JSON is a nested one. at first it will display some services for the user with check-boxes, then user can check them if he is interested. When he clicks the button it should to display the service info of which user wanted. I really appreciate if anyone can help, I am new to json. I have one HTML and one JS also a JSON file. Using the Node for local host and some css. I think I need to use the for.Each to check if the check box is checked and it is obvious I am not using it properly.
JavaScript
x
133
133
1
function displayProviders()
2
{
3
var json = {
4
"d":
5
[
6
{
7
"question":"Service type 1?",
8
"answer": "answer 1",
9
"providers:" :
10
[
11
{
12
"Organization": "provider 1-A",
13
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
14
},
15
{
16
"Organization": "Provider 1-B",
17
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
18
}
19
]
20
21
},
22
{
23
"question":"Service type 2?",
24
"answer": "answer 1",
25
"providers:" :
26
[
27
{
28
"Organization": "provider 2-A",
29
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
30
},
31
{
32
"Organization": "Provider 2-B",
33
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
34
}
35
]
36
37
},
38
39
{
40
"question":"Service type 3?",
41
"answer": "answer 1",
42
"providers:" :
43
[
44
{
45
"Organization": "provider 3-A",
46
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
47
},
48
{
49
"Organization": "Provider 3-B",
50
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
51
}
52
]
53
}
54
]
55
};
56
57
$(document).ready(function(){
58
var check=false;
59
$.each(json.d, function(){
60
check= document.getElementById("testcheck").checked;
61
if (check==true){
62
$('<h4>'+this.value.Organization+': </h4><br>').appendTo(Answers);
63
}
64
var check=false;
65
66
67
});
68
});
69
}
70
71
function ServicesWithCheckbox(){
72
73
var json = {
74
"d":
75
[
76
{
77
"question":"Service type 1?",
78
"answer": "answer 1",
79
"providers:" :
80
[
81
{
82
"Organization": "provider 1-A",
83
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
84
},
85
{
86
"Organization": "Provider 1-B",
87
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
88
}
89
]
90
91
},
92
{
93
"question":"Service type 2?",
94
"answer": "answer 1",
95
"providers:" :
96
[
97
{
98
"Organization": "provider 2-A",
99
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
100
},
101
{
102
"Organization": "Provider 2-B",
103
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
104
}
105
]
106
107
},
108
109
{
110
"question":"Service type 3?",
111
"answer": "answer 1",
112
"providers:" :
113
[
114
{
115
"Organization": "provider 3-A",
116
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
117
},
118
{
119
"Organization": "Provider 3-B",
120
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
121
}
122
]
123
}
124
]
125
};
126
$(document).ready(function(){
127
128
var $grouplist = $('#checkboxes');
129
$.each(json.d, function() {
130
$('<label>'+this.question+': </label><input type=checkbox id="testcheck" /><br>').appendTo($grouplist);
131
132
});
133
});}
JavaScript
1
12
12
1
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
2
<div id="checkboxes">
3
<button onclick="ServicesWithCheckbox()">Click </button><br>
4
<br>
5
</div>
6
<br>
7
<div id="Answers">
8
<button onclick="displayProviders()">Get your Answer here</button>
9
10
answer here :
11
12
</div>
Advertisement
Answer
This might help you, I have refactored the code too,
JavaScript
1
84
84
1
// data for services and providers display
2
const json = {
3
"d":
4
[
5
{
6
"question": "Service type 1?",
7
"providers:":
8
[
9
{
10
"Organization": "provider 1-A",
11
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
12
},
13
{
14
"Organization": "Provider 1-B",
15
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
16
}
17
]
18
19
},
20
{
21
"question": "Service type 2?",
22
"providers:":
23
[
24
{
25
"Organization": "provider 2-A",
26
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
27
},
28
{
29
"Organization": "Provider 2-B",
30
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
31
}
32
]
33
34
},
35
36
{
37
"question": "Service type 3?",
38
"providers:":
39
[
40
{
41
"Organization": "provider 3-A",
42
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
43
},
44
{
45
"Organization": "Provider 3-B",
46
"Link": "href= https://stackoverflow.com/questions/9463233/how-to-access-nested-json-data"
47
}
48
]
49
}
50
]
51
};
52
53
54
// checked boxes map
55
let checkedBoxMap = new Map();
56
57
// to add checked data
58
function addCheckedData(event) {
59
if (event.target.checked) {
60
checkedBoxMap.set(Number(event.target.getAttribute('data-num')), true);
61
} else {
62
checkedBoxMap.delete(Number(event.target.getAttribute('data-num')));
63
}
64
}
65
66
// display providers
67
function displayProviders() {
68
let content = '';
69
for (let key of checkedBoxMap.keys()) {
70
const providers = json.d[key]['providers:'];
71
providers.forEach(element => {
72
content += `<div>Organisation: ${element.Organization}<br/>Link - <a ${element.Link}>click here</a></div>`
73
})
74
}
75
document.getElementById('content').innerHTML = content;
76
}
77
78
// to display services with checkbox
79
function ServicesWithCheckbox() {
80
const $grouplist = $('#checkboxes');
81
$.each(json.d, function (index) {
82
$(`<label>${this.question}: </label><input onchange="addCheckedData(event)" type=checkbox data-num=${index} /><br>`).appendTo($grouplist);
83
});
84
}
JavaScript
1
10
10
1
<div id="checkboxes">
2
<button onclick="ServicesWithCheckbox()">Click</button>
3
<br>
4
<br>
5
</div>
6
<div id="Answers">
7
<button onclick="displayProviders()">Get your Answer here</button>
8
answer here :<div id="content"></div>
9
</div>
10
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>