这个报错原因是什么AttributeError: module 'cgi' has no attribute 'parse_qs
时间: 2023-10-28 19:47:05 浏览: 235
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常发生在 Python 3.x 中,因为 Python 3.x 中的 cgi 模块已经重构过了,parse_qs() 方法已经更名为 parse_qsl() 方法。因此,你需要将你的代码中使用的 parse_qs() 方法替换为 parse_qsl() 方法。如果你使用的是 Python 2.x 版本,那么你可以正常使用 parse_qs() 方法。
阅读全文