标签:typeerror 函数 type pre nec expected 参数 error lambda
1. 如果槽函数没有参数:
self.gw_Btn.clicked.connect(self.ne_event)
2. 如果槽函数有参数:
self.gw_Btn.clicked.connect(lambda:self.ne_event(ne))
不使用lambda的话会报错:
TypeError: argument 1 has unexpected type ‘NoneType‘
标签:typeerror 函数 type pre nec expected 参数 error lambda
原文地址:https://www.cnblogs.com/rita-jia/p/12302714.html