您好,我是新手,我尝试将结果保存在外部变量中,以便稍后在使用jsonp的请愿书中使用
var user = null;
gettingUser()
function gettingUser() {
$.getJSON("https://myapi.com/users/profile/?userid=" + id + "&jsonp=?", function (json) {
getData(json);
});
console.log(user) // this is null here why ?
}
getData(data){
user = data
}
在var用户中我得到null的所有方式,我需要帮助谢谢