- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,我想说的是,我刚刚开始使用 python 和 twisted,所以即使在搜索我遇到的所有错误和疑虑时,我确信我仍然可以产生一些愚蠢的错误和疑虑。
也就是说,我正在研究这个客户端-服务器对,其中客户端将模拟一个监听循环以了解设备是否连接到它,然后使用它的参数向服务器发送消息。
首先,我创建了连接,然后开始循环,然后在设备连接后发送文件(您会在代码底部看到注释)。现在我要做的是在设备连接到客户端时创建连接(在 LoopingCall 调用的函数内),问题来了,因为它抛出了您在标题中看到的异常。
这是给我带来麻烦的客户端代码。
from twisted.internet import reactor, protocol
from twisted.internet.task import LoopingCall
import gri
import os
ID = '1258'
filename = 'parameters.xml'
a = 1;
reg = 0;
xreg = 0;
xdreg = 0;
#Create the radio object
radio = gri.Radio()
class EchoClient(protocol.Protocol):
def connectionMade(self):
self.transport.write(ID)
def sendXML(self):
f = open(filename,'r')
self.transport.write(f.read())
f.close()
class EchoFactory(protocol.ClientFactory):
def buildProtocol(self, addr):
self.connection = EchoClient()
return self.connection
def clientConnectionFailed(self, connector, reason):
print "Connection failed."
reactor.stop()
def clientConnectionLost(self, connector, reason):
print "Connection lost."
reactor.stop()
#listening loop
def find_usrp():
global a
global reg
global xreg
global xdreg
global factory
# a=0 if the device is connected, a=1 if not
a = radio.findRadio()
if a == 0:
reg = 1
if xreg == 0:
#creating the connection once the device is connected
factory = EchoFactory()
reactor.connectTCP("localhost",8000, factory)
factory.connection.sendXML()
xreg = 1
xdreg = 0
else:
print "Device is not connected"
if reg == 1:
print "Device is out"
if xdreg == 0:
xdreg = 1
xreg = 0
#creating the connection before the loop
#factory = EchoFactory()
#reactor.connectTCP("localhost",8000, factory)
LoopingCall(find_usrp).start(1, now = False)
reactor.run()
就是这样,我不知道为什么当它转到 factory.connection.sendXML() 时找不到连接。我一直在尝试不同的事情,比如将工厂作为参数传递给 find_usrp 函数,改变地方的东西,但恐怕我对这种语言没有足够的知识来知道到底发生了什么......让我们看看你是否可以帮我解决这个问题,这样我才能真正了解它。谢谢!
编辑:
到目前为止,eighilaza 所说的对我来说有意义,我已经尝试运行这条线factory.connection.sendXML()
一段时间后,它似乎可以工作,所以也许我正在尝试在创建之前运行此功能。但是有什么办法可以控制吗?
最佳答案
导致错误的原因是您在建立连接之前调用了 factory.connection。
在您的代码中,reactor.connectTCP("localhost",8000, factory)
是非阻塞的,因此您在连接建立之前到达 factory.connection.sendXML()
制成。
关于python - 异常.AttributeError : EchoFactory instance has no attribute 'connection' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29436935/
我正在学习 Twisted,这是我的第一个服务器示例: from twisted.internet import protocol, reactor class Echo(protocol.Proto
首先,我想说的是,我刚刚开始使用 python 和 twisted,所以即使在搜索我遇到的所有错误和疑虑时,我确信我仍然可以产生一些愚蠢的错误和疑虑。 也就是说,我正在研究这个客户端-服务器对,其中客
我是一名优秀的程序员,十分优秀!