我需要解析来自服务器的回复,有一个代码:
$.getJSON('http://connect.mail.ru/share_count?callback=1&url_list=http://www.google.com&func=test', function(data) {
$('#ml_counter').text(data);
});
作为对http://connect.mail.ru/share_count?callback=1&url_list=http://www.google.com&func=test请求服务器的回复给出:
test(
{
"http://www.google.com":{"shares":574,"clicks":65}
});
如何从中获得“574”?
答案 0 :(得分:2)
callback: function(result) {
var yourVal = result['http://www.google.com'].shares;
}
在你的情况下:
.text(data['http://www.google.com'].shares);
请注意,将网址作为参数返回并不令人感到安慰。您最好只返回子对象或域对象列表(其中一个属性类似于url
而另一个属性是{ shares .... }
对象。