我正在调用getTags
web-method,它以JSON格式返回hash-table。
以下是由
jQuery.parseJSON(JSON.stringify(response))
并分配给变量jsonObj
我想读取Key及其值。我该怎么做?
var jsonObj = {"getTags":[
{"Key":"TagID","Value":2},
{"Key":3,"Value":"Best College"}
]
}
答案 0 :(得分:0)
答案 1 :(得分:0)
你使用" Keys"使json有点复杂。和"价值"再次作为关键。理想的JSON应如下所示:
var jsonObj ={
"getTags": {
"3": "Best College",
"TagID": 2
}
}
使用以下jquery处理此对象:
var items=[];
$.each(jsonObj, function(key, val) {
// you can do whatever you want with key value pair.
items.push(val);
});
console.log(items); // items contains ["Best College",2]
的更多帮助