如何使用jsonp将结果保存在ouside变量中

时间:2019-05-08 17:23:40

标签: javascript jquery ajax jsonp

您好,我是新手,我尝试将结果保存在外部变量中,以便稍后在使用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的所有方式,我需要帮助谢谢

0 个答案:

没有答案