0

我已经设置了简单的 python 脚本,它以 hello 响应:

def main(environ, start_response):
    start_response('200 OK', [
        ('Content-type', 'text/plain')

        ])

    return 'hello'

在 Chrome 中一切正常,我可以每秒刷新一次页面但在 Firefox 中我收到“待定”状态,最终在很长一段时间 Firefox 显示响应消息。

这里有什么问题?我尝试使用 Content-Length 但没有帮助

以下是回复:

不,在不同的机器上使用两个不同的 Firefox 进行了测试。

火狐:

Status=OK - 200
Server=nginx
Date=Thu, 24 Jan 2013 14:28:31 GMT
Content-Type=text/plain
Transfer-Encoding=chunked
Connection=keep-alive
Content-Encoding=gzip

铬合金:

HTTP/1.1 200 OK
服务器:nginx
日期:2013 年 1 月 24 日星期四 20:24:06 GMT
内容类型:text/plain
传输编码:分块
连接:keep-alive
内容编码:gzip

4

0 回答 0