python中的错误提示
定义函数:
def getCommunityList(self, IDType, ID, type, maxPrice, minPrice, roomNum, startDice, pageCount):
Pass
调用函数:
communityList = getCommunityList('fieldid', fieldID, type, maxPrice, minPrice, roomNum, startDice, pageCount)
此处如果如此调用,则导致 参数数量错误:
TypeError: getCommunityList() takes exactly 6 arguments (8 given)
由于 self 参数的传递是通过 self.funcName()形式调用!
因此,如此调用方显正常:
communityList = self.getCommunityList('fieldid', fieldID, type, maxPrice, minPrice, roomNum, startDice, pageCount)
实在是对self理解不能啊!
望搭救!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我觉得python的错误提示太扯了!
太感谢 周翼翼 的回答了~!
多谢!
TypeError: getCommunityList() takes exactly 6 arguments (8 given)
说是参数只有6个,你看看是不是有全局函数名字叫
getCommunityList(),只接受6个参数.
TypeError: getCommunityList() takes exactly 6 arguments (8 given)
说是参数只有6个,你看看是不是有全局函数名字叫
getCommunityList(),只接受6个参数.