这是我的代码:
$(document).ready(function(){
$.getJSON("/info.php", function(json){
$("#userinfo").html(json.response.players.avatar);
});
});
当我转到此undefined
文件时,我得到了所需的一切。
但是我应该如何解析这个JSON响应?我想做这样的事情:
model_to_dict
有可能吗?
这是我的jQuery代码:
serializers.serialize()
我没有收到任何错误,但图片不会出现。此外,当我提醒我时,我得到list
答案 0 :(得分:0)
请尝试使用此代码: -
$.getJSON( "http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?steamids=76561197960435530&key=52A66B13219F645834149F1A1180770A&format=json", function( json ) {
console.log (json.response.players[0].avatar);
});
干杯:)
答案 1 :(得分:-1)
你试过$ .parseJSON吗?
$(document).ready(function(){
$.getJSON("/info.php", function(json){
json = $.parseJSON(json);
$("#userinfo").html(json.response.players.avatar);
});
});