内部の複数のアレイでJSON配列から特定の値を取得し、私は、次のようJASON形式で出力値を持っている:私はこのウェブサイトに多くても1つは、この で助けることができるを見ることができるように私はここに求めているJavaScriptで
私が欲しいもの{
"total": 16,
"members": [{
"id": 4,
"name": "Blade11",
"descriptors": {
"os": "Windows 2012/WS2012 R2"
},
"FCPaths": [{
"wwn": "50060B0000C27208",
"hostSpeed": 0
}, {
"wwn": "50060B0000C2720A",
"hostSpeed": 0
}],
"iSCSIPaths": [],
"persona": 11,
"links": [{
"href": "https://3par:8080/api/v1/hostpersonas?query=\"wsapiAssignedId EQ 11\"",
"rel": "personaInfo"
}],
"initiatorChapEnabled": false,
"targetChapEnabled": false
}, {
"id": 6,
"name": "Blade4",
"descriptors": {
"os": "VMware (ESXi)"
},
"FCPaths": [{
"wwn": "50060B0000C27216",
"hostSpeed": 0
}, {
"wwn": "50060B0000C27214",
"hostSpeed": 0
}],
"iSCSIPaths": [],
"persona": 8,
"links": [{
"href": "https://3par:8080/api/v1/hostpersonas?query=\"wsapiAssignedId EQ 8\"",
"rel": "personaInfo"
}],
"initiatorChapEnabled": false,
"targetChapEnabled": false
}
は、あくまでも一例名= Blade11、Blade4のための文字列 のリストまたは配列内の名前のオブジェクトと出力パラメータを取得するため、この出力を解析するために、ある....
できれば私たちは "members"の下にあるすべての名前を持つJsonの出力を見て、それぞれが別の値の配列であり、nすでにJSON形式を持っているのでエイムズ
おかげ
var names = json.members.map(function(obj){return obj.name}); – juvian