7

我是一名网络开发人员。在我的脚本中使用 header() 来设置“Transfer-Encoding:chunked”。和 flush() 到网页。它将在网页上分时打印。它工作正常。但是,当我使用 jQuery.ajax() 请求 this.it 时,它总是一起输出(分块无用)。

如何解决这个问题?在 jQuery ajax 中使用分块编码?

4

1 回答 1

12

您不能使用 jquery.ajax 连续读取分块的 http 响应。jquery ajax 只有在连接终止时才会调用成功回调函数。你应该使用 这个 jquery 插件。

如果您使用的是 php,那么您可以使用以下代码:

 <html>
        <head>
            <script src="jquery-1.4.4.js"></script>
            <script src="jquery.stream-1.2.js"></script>
            <script>

                var println = function(string){
                    $("#console").append(string+"<br />");
                }

                $(document).ready(function(){



                    $.stream("stream.php",{
                        open:function(){
                            println("opened");
                        },
                        message:function(event){
                            println(event.data);
                        },
                        error:function(){
                            println("error");
                        },
                        close:function(){
                            println("closed");
                        }
                    });



                });
            </script>
        </head>
        <body>


            <div id="console"></div>

        </body>
    </html>

在服务器端:

流.php

<?php


   header('Content-Encoding', 'chunked');
   header('Transfer-Encoding', 'chunked');
   header('Content-Type', 'text/html');
   header('Connection', 'keep-alive');

   ob_flush();
   flush();

   echo("23123454645645646;");


   $p = "";
   for ($i=0; $i < 1024; $i++) { 
       $p .= " ";
   };
   echo($p.";");



   for ($i = 0; $i < 10000; $i++) {
      echo('6;string;');
      ob_flush();
      flush();
      sleep(2);
   }




?>
于 2012-07-05T03:40:22.777 回答