同步跨域jquery调用,超时缺陷?

发布于 2024-12-27 20:05:11 字数 498 浏览 0 评论 0原文

互联网上我发现了这一小块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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文