假设我从后端服务层返回了这些数据:
[“2”、“3”、“7”、“14”]
第一个问题。这是否被认为是有效的 JSON 数据?Json.org说它是,但我在 Google、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.
});
我看了一下这个线程,但它有对象,而不仅仅是一个数组。我应该使用parseJSON
vsgetJSON
吗?
提前致谢!