Sometimes we need to rapidly hit the same API . Like ,"http://myAPI.php?param=123456"
There is a caching problem in IE. Swf hits URL first time and store in to the cache and shows the same result in each response. So to resolved the issue we just add unique random number in the end of the url.
"http://myAPI.php?param=123456" + new Date().getTime()"
I think, it would help you out.
0 Comment(s)