简体   繁体   中英

Taking data from inside Ajax Jsonp

I want to receive data from inside Ajax function(result).

Why doesn't work this app?

Please Help.

function star(a) {
    var res;
    $.ajax({
        url: 'https://api-metrica.yandex.com/analytics/v3/data/ga?end-date=today&ids=ga%3A35416355&dimensions=ga:pagePath&metrics=ga:users&filters=ga:pagePath==/p/etkinlikler.html&start-date=2015-10-25&oauth_token=AQAAAAAVs-uLAASpEAf-MmJK_kHgpU9Fwv8WArM',
        dataType: 'jsonp',
        async: false,
        success: function(result) {
            res = result.totalsForAllResults["ga:users"];
        }
    });

    return res;
}

https://jsfiddle.net/q6vfgemp/

It's working , But you need to move that line :

$("div").html(res);

inside success function

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM