AttributeError: 'dict_values' object has no attribute 'translate'
/***************************************************************************************** * AttributeError: 'dict_values' object has no attribute 'translate' * 说明: * 由于目前使用的是Python3,在解读MySQL的ORM库的时候,结果直接遇到这个错误。 * * 2016-10-13 深圳 南山平山村 曾剑锋 ****************************************************************************************/ 一、参考文档: 1. Get: TypeError: 'dict_values' object does not support indexing when using python 3.2.3 [duplicate] http://stackoverflow.com/questions/17431638/get-typeerror-dict-values-object-does-not-support-indexing-when-using-python 二、解决方法: return Database.execute(insert, self.__dict__.values()) to return Database.execute(insert, list(self.__dict__.values()))