我有这个JSON,我需要使用它。
{"services":{"344":{"post":{"ID":344}},"345":{"post":{"ID":345}}}}
我需要获得 services.344.post.ID 的值,即344。 如何实现这一目标?
提前谢谢。
答案 0 :(得分:1)
如果
var path = Window.Panel(1).Panel(2).Panel(0).Panel(0).Panel(0).Panel(0).Panel(1).Panel(0);
// path to the Checkbox
path.Label(x).Checkbox(0);
// or if you want to loop over it
for (var x = 0, len = 8; i < len; x += 1) {
if (path.Label(x).Checkbox(0).value === 'something') {
console.log('hooray!');
}
}
然后你想要var obj = JSON.parse('{"services":{"344":{"post":{"ID":344}},"345":{"post":{"ID":345}}}}');