Synchronous AJAX requests in mobile widgets
I'm having troubles with a synchronous开发者_C百科 AJAX call in a JIL widget. Only the asynchronous version seems to work. What call types do you usually use sync or async?
The runtime implementation does not support the synchronous version of XMLHttpRequest. So, always use async.
精彩评论