for name, member in enumeration.__members__.items(): E AttributeError: type object 'MyEncoder' has no attribute '__members__'
时间: 2023-06-27 11:08:08 浏览: 154
Process--thread-enumeration.rar_delphi thread_delphi枚举进程_进程的线程
这个错误是因为你使用了枚举类(Enum)中的方法`__members__`,但是你的代码中并没有定义枚举类。可能是你意图使用其他类的成员,但是错误地把类名写成了`MyEncoder`。请检查一下你的代码,确认是否有语法错误或者是逻辑错误。如果还有疑问,请提供更多的代码和上下文信息,以便更好地帮助你解决问题。
阅读全文