我在這裏有一些代碼json。如何在JavaScript中分割json中的值?
[
{
"id": "Node-1",
"label": "Node-1",
"image": "img/hosts.png",
"shape": "image",
"description": "Node-1:type: OS::Nova::Serverproperties: image: {get_param:image} flavor: {get_param:flavor}"
},
{
"id": "Switch-1",
"label": "Switch-1",
"image": "img/switch.png",
"shape": "image",
"description": "Switch-1:type: OS::Neutron::Netproperties: name:Switch-1Switch-1_subnet:"
}
]
我怎樣才能得到JavaScript的「描述」值?
你是如何加載json的 – user3080953
你可以將Json分配給一個變量,並將它作爲一個數組中的一個屬性讀取。例如:Json [1]。說明 –