Ajax长连接

前端之家收集整理的这篇文章主要介绍了Ajax长连接前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

所谓的长连接,就是不断去发送请求,把请求阻塞在服务器端,每次超过请求时间就去重新发送请求,保持连接,随时获取服务器端的响应的数据

项目案例:

function connection(){ $.ajax({ type:"GET",url:"/api2/session/event?",data:{ "uid":obj.uid,"sessionID":"cool" },success:function(serverData){ connection(); },error:function(XMLHttpRequest,textStatus,errorThrown){ connection(); } }); }

原文链接:https://www.f2er.com/ajax/165914.html

猜你在找的Ajax相关文章