开发者

Javascript function returning undefined

开发者 https://www.devze.com 2023-03-11 05:56 出处:网络
Its a bit strange. I am making a bitly api call and it returns undefined for all the calls, but if I add an alert() right before I get the link variable, it returns the correct link.

Its a bit strange. I am making a bitly api call and it returns undefined for all the calls, but if I add an alert() right before I get the link variable, it returns the correct link.

Now if I add the alert here :

function getBitlyLink(){
    开发者_运维问答alert(bitlyLink);
    return bitlyLink;
}

I get the correct links and not undefined. What exactly is that alert box doing??


Your code is not being executed synchronously. Pass a callback to your getBitlyLink() function.

0

精彩评论

暂无评论...
验证码 换一张
取 消