样例Python扭曲事件驱动的Web应用程序将请求计数增加2,这是为什么?

the sample python twisted event driven web application increments request count by 2, why?(样例Python扭曲事件驱动的Web应用程序将请求计数增加2,这是为什么?)
本文介绍了样例Python扭曲事件驱动的Web应用程序将请求计数增加2,这是为什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

http://twistedmatrix.com/trac/给出的基本Web服务器的示例代码似乎为每个请求将请求计数器递增2,而不是递增1。

代码:

from twisted.web import server, resource
from twisted.internet import reactor

class HelloResource(resource.Resource):
    isLeaf = True
    numberRequests = 0

    def render_GET(self, request):
        self.numberRequests += 1
        request.setHeader("content-type", "text/plain")
        return "I am request #" + str(self.numberRequests) + "
"

reactor.listenTCP(8080, server.Site(HelloResource()))
reactor.run()

查看代码,您应该能够连接到urlhttp://localhost:8080并查看:

I am request #1

然后刷新页面并查看:

I am request #2

但是,我看到:

I am request #3

再次刷新时,我看到:

I am request #5

因此,从计数器来看,服务器似乎为每个请求调用了两次函数"Render_Get"。我正在使用Python2.7在Windows7上运行这个程序。你知道可能发生了什么吗,或者这是意料之中的行为?

更新:代码运行得很好,是浏览器出了问题。每次页面刷新时,浏览器都会发送一个针对"/"和"/folic.ico"的GET请求,这是递增2的原因,因为Render_Get函数实际上在每次页面刷新时被调用两次。

推荐答案

浏览器的行为方式可能出人意料。如果您尝试打印完整的请求,您可能会发现它请求的是"/",也可能是"Favic.ico"。

这篇关于样例Python扭曲事件驱动的Web应用程序将请求计数增加2,这是为什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)