同步跨域jquery调用,超时缺陷?
在互联网上我发现了这一小块jquery魔法,它执行同步跨域json调用。
用于测试被调用的URL(http://localhost:8080/runsforever)不会返回,它会永远运行。 (无限循环)
我添加了超时属性,但它不起作用,它永远阻塞。
如何实现超时工作?
var jsonObjectInstance = $.parseJSON($.ajax({
url : "http://localhost:8080/inbound-servletapi/getRecommendations",
timeout: 5 ,
async : false,
dataType : 'json'
}).responseText);
on the internet i found this little piece of jquery magic, which does a synchronous cross domain json call.
For testing The called URL (http://localhost:8080/runsforever) does not return, it runs forever. (endless loop)
I have added the timeout property, but it doesn't work, it blocks for ever.
How to get timeout to work?
var jsonObjectInstance = $.parseJSON($.ajax({
url : "http://localhost:8080/inbound-servletapi/getRecommendations",
timeout: 5 ,
async : false,
dataType : 'json'
}).responseText);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论