作为标题。该类在内部类中设置属性值。然后,从外部函数访问该内部属性类。在下面,使用内部函数set_error设置属性集。然后,使用外部函数last_error来访问错误。
const pokemonNames = PokemonData.map(p => p.name); // using 'as const' throws a compile-time error
type PokemonName = ArrayType<typeof pokemonNames>;
答案 0 :(得分:0)
将last_error
更改为:
def last_error(self):
return self.identify.error_info
您想得到identify
的错误。您已经在构造函数中初始化了identify
,所以现在就可以使用它。