我正在尝试连接扫描仪,该扫描仪通过apiport提供REST Api。在我能做到这一点之前,我必须使用PyQt5连接到扫描仪并签署挑战。我有一个C ++代码作为示例,但我找不到相应的PyQt类/方法。
基本上我正在寻找一种从C ++中替换这些行的方法:
QWebSocket socket;
QString address = "127.0.0.1";
QString port = "1234";
connect(&socket,&QWebSocket::textMessageReceived,this,&Client::onTextMessageReceived);
socket.open(QUrl(QString("ws://%1:%2").arg(address).arg(port)));
我的问题是这一行:
connect(&socket,&QWebSocket::textMessageReceived,this,&Client::onTextMessageReceived);
有人可以帮我这个吗? 到目前为止我所拥有的只是:(但它会引发错误: TypeError:本机Qt信号不可调用)
class Client(QtCore.QObject):
def __init__(self, parent):
super().__init__(parent)
self.client = QtWebSockets.QWebSocket("",QtWebSockets.QWebSocketProtocol.Version13,None)
#self.client.error.connect(self.error)
print("Trigger")
trigger = self.client.textMessageReceived()
#self.client.open(QUrl("ws://"+UDP_IP+":"+str(notificationsport)))
def ontextmsgreceived():
print("Text MSG received")
def close(self):
self.client.close()
global client
app = QApplication(sys.argv)
client = Client(app)
app.exec_()
非常感谢您的帮助!
答案 0 :(得分:0)
在PyQt中,连接语法如下:
C ++:
connect(sender, &Class_sender::some_signal, receiver, &Class_receiver::some_slot);
蟒:
sender.some_signal.connect(receiver.some_slot)
所以在你的情况下:
self.client.textMessageReceived.connect(self.ontextmsgreceived)
另一个问题是你的插槽是类的一个方法,所以第一个参数必须是self
,此外textMessageReceived信号发送一个文本作为参数,所以插槽必须有相同的参数:
def ontextmsgreceived(self, message):
print("Text MSG received", message)