我尝试在PyQt类中添加一个函数,但它总是返回一个错误。
# Error: TypeError: connect() slot argument should be a callable or a signal, not 'NoneType' #
def commander (self, arg):
exec arg
def aButton (self, layout, **kwargs):
name = kwargs.pop("name","Button")
command = kwargs.pop("command", "" )
button = QtGui.QPushButton(name)
button.clicked.connect(self.commander(command))
layout.addWidget(button)
return button
可能有人在这里可以帮助我解决这个问题:') 谢谢!
答案 0 :(得分:27)
你需要一个功能:
button.clicked.connect(lambda: self.commander(command))
注意lambda将避免对函数调用进行评估,因此只有在单击时才会调用self.commander(command)
答案 1 :(得分:2)
出现在
中button.clicked.connect(self.commander(command))
self.commander(command)
正在返回None
而不是信号或可赎回。