我如何使用jQuery和“长轮询”的更新与印HTTP服务器动态HTML页面?(How can I u

2019-08-06 14:06发布

我已阅读文章用JavaScript和jQuery简单的长轮询例子 。 该段的“长轮询 - 高效的服务器推送技术”解释说,

长轮询技术结合了持续的远程服务器连接最好的情况传统的轮询。 术语长轮询本身是短期的长期持有的HTTP请求。

我怎么能实现它采用长轮询基于印第安纳波利斯的HTTP服务器?

Answer 1:

这里是一个自包含的示例项目,与印版10.5.9和德尔福2009年测试。

当应用程序运行时,浏览到http://127.0.0.1:8080/ 。 然后,服务器将提供一个HTML文件(在OnCommandGet处理器硬编码)。

本文件包含将被用作新的数据的容器div元素:

<body>
  <div>Server time is: <div class="time"></div></div>'
</body>

JavaScript代码,然后将请求发送到资源/getdata在一个循环(功能poll()

服务器与含有新的一个HTML片段响应<div>与当前服务器时间元素。 然后JavaScript代码替换旧<div>用新的元件。

为了模拟服务器的工作,该方法返回数据之前等待一秒钟。

program IndyLongPollingDemo;

{$APPTYPE CONSOLE}

uses
  IdHTTPServer, IdCustomHTTPServer, IdContext, IdSocketHandle, IdGlobal,
  SysUtils, Classes;

type
  TMyServer = class(TIdHTTPServer)
  public
    procedure InitComponent; override;
    procedure DoCommandGet(AContext: TIdContext;
      ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo); override;
  end;

procedure Demo;
var
  Server: TMyServer;
begin
  Server := TMyServer.Create(nil);
  try
    try
      Server.Active := True;
    except
      on E: Exception do
      begin
        WriteLn(E.ClassName + ' ' + E.Message);
      end;
    end;
    WriteLn('Hit any key to terminate.');
    ReadLn;
  finally
    Server.Free;
  end;
end;

procedure TMyServer.InitComponent;
var
  Binding: TIdSocketHandle;
begin
  inherited;

  Bindings.Clear;
  Binding := Bindings.Add;
  Binding.IP := '127.0.0.1';
  Binding.Port := 8080;

  KeepAlive := True;
end;

procedure TMyServer.DoCommandGet(AContext: TIdContext;
  ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo);
begin
  AResponseInfo.ContentType := 'text/html';
  AResponseInfo.CharSet := 'UTF-8';

  if ARequestInfo.Document = '/' then
  begin
    AResponseInfo.ContentText :=
      '<html>' + #13#10
      + '<head>' + #13#10
      + '<title>Long Poll Example</title>' + #13#10
      + '  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript" charset="utf-8"> ' +
        #13#10
      + '  </script> ' + #13#10
      + '  <script type="text/javascript" charset="utf-8"> ' + #13#10
      + '  $(document).ready(function(){ ' + #13#10
      + '  (function poll(){' + #13#10
      + '  $.ajax({ url: "getdata", success: function(data){' + #13#10
      + '      $("div.time").replaceWith(data);' + #13#10
      + '  }, dataType: "html", complete: poll, timeout: 30000 });' + #13#10
      + '  })();' + #13#10
      + '  });' + #13#10
      + '  </script>' + #13#10
      + '</head>' + #13#10
      + '<body> ' + #13#10
      + '  <div>Server time is: <div class="time"></div></div>' + #13#10
      + '</body>' + #13#10
      + '</html>' + #13#10;
  end
  else
  begin
    Sleep(1000);
    AResponseInfo.ContentText := '<div class="time">'+DateTimeToStr(Now)+'</div>';
  end;
end;

begin
  Demo;
end.


文章来源: How can I update HTML pages dynamically with Indy HTTP server using jQuery and “Long Polling”?