TypeError:本机 Qt 信号不可调用
Posted
技术标签:
【中文标题】TypeError:本机 Qt 信号不可调用【英文标题】:TypeError: native Qt signal is not callable 【发布时间】:2012-05-16 12:38:29 【问题描述】:我正在尝试向受保护的网页发出请求,因此我尝试在 QAuthenticator()
的帮助下进行身份验证。但是,我收到以下错误:
mgr.authenticationRequired(response, auth)
TypeError: native Qt signal is not callable
这是我脚本的一部分:
def authenticate(self):
username = 'user'
password = 'pass'
url = 'http://someurl.com'
mgr = QNetworkAccessManager(self)
auth = QAuthenticator()
auth.setUser(username)
auth.setPassword(password)
response = QNetworkRequest()
response.setUrl(QUrl(url))
mgr.authenticationRequired(mgr.get(response), auth)
我在这里做错了什么?
【问题讨论】:
【参考方案1】:如错误消息所示,您不能调用 PyQt 信号。相反,您必须使用emit()
方法:
mgr.authenticationRequired.emit(mgr.get(response), auth)
【讨论】:
【参考方案2】:为什么要发出信号?我对协议的理解是,当网络上的服务器需要身份验证时,QNAM 会发出该信号。您的程序应该连接到该信号,而不是发出它。 “连接到此信号的插槽应填充身份验证器对象中内容的凭据(可以通过检查回复对象来确定)。”我可能错了你正在尝试什么。
【讨论】:
以上是关于TypeError:本机 Qt 信号不可调用的主要内容,如果未能解决你的问题,请参考以下文章
Django:'TypeError:'HttpResponseForbidden'对象不可调用
python fbprophet错误,TypeError:'module'对象不可调用
Django 预览,TypeError:'str' 对象不可调用