比方說,我有一個後端服務層這個數據返回:JQuery的填充的DropDownList與JSON數據
[「2」,「3」,「7」,「14」]
第一個問題。這是否被認爲是有效的JSON數據? Json.org說這是,但我找不到任何在谷歌,SO等參考......
值的有序列表。在大多數語言中,這是作爲數組,矢量,列表或序列實現的。
我希望能夠接受這些值並將它們添加到使用JQuery的已存在的DropDownList對象OnLoad中。
$.getJSON(「http://www.example.com/path-to-get-data」, function(data) {
//iterate through each object and add it to the list.
//ideally, the key and value (string to display to the end user) would be the same.
});
我看了看this thread,但它有對象,不只是一個數組。我應該使用parseJSON
與getJSON
?
在此先感謝!
我相信這是無效的,有效的JSON將會像{「鍵‘2’, 」關鍵「:‘3’, 」關鍵「:‘7’, 」重點「: 「14」} – Satya
'$ .parseJSON( '[ 「2」, 「3」, 「7」, 「14」]')'將返回的數組。更好地使用getJSON並迭代數組中的每個項目並將其添加到對象中 – rzr