我有下面的一些JSON數據,填充JSON陣列/對象
{
"cleaning" : [
{
"MOPS" : [
{
"id" : "123",
"name" : "best mops",
"price" : "123"
},
{
"id" : "123",
"name" : "best mops",
"price" : "123"
},
{
"id" : "123",
"name" : "best mops",
"price" : "123"
}
],
"GlOVES" : [
{
"id" : "123",
"name" : "best mops",
"price" : "123"
},
{
"id" : "123",
"name" : "best mops",
"price" : "123"
},
{
"id" : "123",
"name" : "best mops",
"price" : "123"
}
],
"Another Items" : [
{
"id" : "123",
"name" : "best mops",
"price" : "123"
},
{
"id" : "123",
"name" : "best mops",
"price" : "123"
},
{
"id" : "123",
"name" : "best mops",
"price" : "123"
}
]
}
]
}
現在我需要在人口這個數據幫助中所需的格式下面的圖片中顯示。
的JSON對象或數組是有效的,但我發現很難來填充它的數據。如果我的JSON數據需要修改或者數據可以簡化,請爲我製作。此外,我只想循環瀏覽JSON數據,並使用jQuery在網頁上顯示結果。
你有僞邏輯下,使一個解決方案的嘗試。你知道你必須循環上述結構 - 所以從此開始! – tymeJV
感謝您的推薦傢伙! –