Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有很多 ajax 请求会发生什么,比如说 $(window).load(function ())网站打开时有 10 个 jquery ajax 请求?
$(window).load(function ())
我打算做很多 ajax 请求我只是想知道会发生什么,它会让我的网站滞后吗?
不,由于请求是异步执行的,它不会使您的页面呈现(!)滞后。
但是,如果您的页面在显示任何内容之前依赖于来自服务的数据,那么它可能会感觉滞后。
请记住,如果您执行大量请求,浏览器将开始对它们进行排队。